Skip to content

Commit

Permalink
fix: remove unused import in mongo_logger
Browse files Browse the repository at this point in the history
  • Loading branch information
andymina committed Nov 29, 2022
1 parent 2ad87c2 commit b27e179
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/mongo_logger.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import * as fs from 'fs';
import type { Writable } from 'stream';

/** @internal */
Expand Down
2 changes: 1 addition & 1 deletion test/integration/node-specific/feature_flags.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ describe('Feature Flags', () => {
for (const { description, value, expectEvents } of tests) {
it(description, async function () {
const options =
value === undefined ? {} : { [Symbol.for('@@mdb.skipPingOnConnect')]: value };
value === undefined ? {} : { [Symbol.for('@@mdb.skipPingOnConnect')]: value };
const client = this.configuration.newClient({}, { ...options, monitorCommands: true });
const events = [];
client.on('commandStarted', event => events.push(event));
Expand Down

0 comments on commit b27e179

Please sign in to comment.