Skip to content

Commit 867221a

Browse files
committed
style: fix lint
1 parent d2a4f73 commit 867221a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/types/models.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -717,13 +717,13 @@ function gh13904() {
717717
interface ITest {
718718
name?: string;
719719
}
720-
const Test = model<ITest>("Test", schema);
720+
const Test = model<ITest>('Test', schema);
721721

722722
expectAssignable<Promise<InsertManyResult<ITest>>>(Test.insertMany(
723-
[{ name: "test" }],
723+
[{ name: 'test' }],
724724
{
725725
ordered: false,
726726
rawResult: true
727727
}
728728
));
729-
}
729+
}

0 commit comments

Comments
 (0)