Skip to content

Commit 16a9130

Browse files
committed
fix: code style check failed
1 parent 3933710 commit 16a9130

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/indexCheck.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defaultTestConfig, expectDefined, getResponseContent } from "./helpers.js";
1+
import { defaultTestConfig, getResponseContent } from "./helpers.js";
22
import { describeWithMongoDB } from "./tools/mongodb/mongodbHelpers.js";
33

44
describe("IndexCheck integration tests", () => {
@@ -79,7 +79,7 @@ describe("IndexCheck integration tests", () => {
7979
arguments: {
8080
database: integration.randomDbName(),
8181
collection: "find-test-collection",
82-
filter: { _id: docs[0]!._id }, // Uses _id index (IDHACK)
82+
filter: { _id: docs[0]?._id }, // Uses _id index (IDHACK)
8383
},
8484
});
8585

@@ -461,4 +461,4 @@ describe("IndexCheck integration tests", () => {
461461
})
462462
);
463463
});
464-
});
464+
});

0 commit comments

Comments
 (0)