Skip to content

Commit 976f4a5

Browse files
committed
test: fix client test
1 parent 890d02c commit 976f4a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/node-specific/mongo_client.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ describe('class MongoClient', function () {
618618
const checkoutStarted = once(client, 'connectionCheckOutStarted');
619619
await client.connect();
620620
const checkout = await checkoutStarted;
621-
expect(checkout).to.not.exist;
621+
expect(checkout).to.exist;
622622

623623
const findCommandToBeStarted = once(client, 'commandStarted');
624624
await client.db('test').collection('test').findOne();

0 commit comments

Comments
 (0)