Skip to content

Commit b785189

Browse files
committed
test(NODE-6858): fix lint
1 parent 9fc2da2 commit b785189

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

test/integration/change-streams/change_stream.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { strict as assert } from 'assert';
2+
import { UUID } from 'bson';
23
import { expect } from 'chai';
34
import { on, once } from 'events';
45
import { gte, lt } from 'semver';
@@ -27,7 +28,6 @@ import * as mock from '../../tools/mongodb-mock/index';
2728
import { TestBuilder, UnifiedTestSuiteBuilder } from '../../tools/unified_suite_builder';
2829
import { type FailCommandFailPoint, sleep } from '../../tools/utils';
2930
import { delay, filterForCommands } from '../shared';
30-
import { UUID } from 'bson';
3131

3232
const initIteratorMode = async (cs: ChangeStream) => {
3333
const initEvent = once(cs.cursor, 'init');
@@ -2261,7 +2261,6 @@ describe('ChangeStream resumability', function () {
22612261
});
22622262

22632263
context('when the error is not a server error', function () {
2264-
// This test requires a replica set to call replSetFreeze command
22652264
it(
22662265
'should resume on ServerSelectionError',
22672266
{ requires: { topology: ['replicaset'] } },
@@ -2607,7 +2606,6 @@ describe('ChangeStream resumability', function () {
26072606
});
26082607

26092608
context('when the error is not a server error', function () {
2610-
// This test requires a replica set to call replSetFreeze command
26112609
it(
26122610
'should resume on ServerSelectionError',
26132611
{ requires: { topology: ['replicaset'] } },
@@ -2775,7 +2773,6 @@ describe('ChangeStream resumability', function () {
27752773
});
27762774

27772775
context('when the error is not a server error', function () {
2778-
// This test requires a replica set to call replSetFreeze command
27792776
it(
27802777
'should resume on ServerSelectionError',
27812778
{ requires: { topology: ['replicaset'] } },

0 commit comments

Comments
 (0)