Skip to content

Commit c29c4ab

Browse files
committed
lint
1 parent 1ed3132 commit c29c4ab

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/integration/client-side-operations-timeout/node_csot.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ const metadata = { requires: { mongodb: '>=4.4' } };
2828
describe('CSOT driver tests', metadata, () => {
2929
const minPoolSize = 20;
3030

31-
describe('CSOT driver tests', metadata, () => {
3231
describe('timeoutMS inheritance', () => {
3332
let client: MongoClient;
3433
let db: Db;
@@ -157,7 +156,10 @@ describe('CSOT driver tests', metadata, () => {
157156
metadata: { requires: { mongodb: '>=4.4', topology: '!load-balanced' } },
158157
test: async function () {
159158
const commandsStarted = [];
160-
client = this.configuration.newClient(undefined, { timeoutMS: 1, monitorCommands: true });
159+
client = this.configuration.newClient(undefined, {
160+
timeoutMS: 1,
161+
monitorCommands: true
162+
});
161163

162164
client.on('commandStarted', ev => commandsStarted.push(ev));
163165

0 commit comments

Comments
 (0)