Skip to content

Commit 8efbad5

Browse files
durranbaileympearson
authored andcommitted
chore: fix lint
1 parent 1c70139 commit 8efbad5

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/operations/command.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,6 @@ export abstract class ModernizedCommandOperation<T> extends ModernizedOperation<
230230
readPreference: this.readPreference,
231231
session: this.session
232232
};
233-
console.log(options);
234233
return options;
235234
}
236235

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,7 @@ describe('class MongoClient', function () {
916916
expect(result2).to.have.property('ok', 1);
917917
});
918918

919-
it.only('sends endSessions with noResponse set', async () => {
919+
it('sends endSessions with noResponse set', async () => {
920920
const session = client.startSession(); // make a session to be ended
921921
await client.db('test').command({ ping: 1 }, { session });
922922
await session.endSession();

0 commit comments

Comments
 (0)