Skip to content

Commit beaff5b

Browse files
committed
fix lint
1 parent 92aef08 commit beaff5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/types/models.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1053,6 +1053,6 @@ async function gh16526() {
10531053
const schema = new Schema({ name: String });
10541054
const Tank = model('Tank', schema);
10551055

1056-
const insertManyResult = await Tank.insertMany([{ name: 'test' }], { lean: true, rawResult: true })
1056+
const insertManyResult = await Tank.insertMany([{ name: 'test' }], { lean: true, rawResult: true });
10571057
expectType<number>(insertManyResult.insertedCount);
10581058
}

0 commit comments

Comments
 (0)