Skip to content

Commit 88187c5

Browse files
chore: fix lint
1 parent f14a5b0 commit 88187c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/types/schema.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2089,8 +2089,8 @@ function gh15751() {
20892089

20902090
function gh15798() {
20912091
const schema1 = new Schema({ name: String }, { statics: { testMe() { } }, versionKey: false });
2092-
model("M1", schema1).testMe();
2092+
model('M1', schema1).testMe();
20932093

20942094
const schema2 = new Schema({ name: String }, { statics: { testMe() { } }, timestamps: true });
2095-
model("M2", schema2).testMe();
2095+
model('M2', schema2).testMe();
20962096
}

0 commit comments

Comments
 (0)