Skip to content

Commit d5fd6a0

Browse files
committed
fix: add eslint disable line
1 parent 9a3c76c commit d5fd6a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1143,7 +1143,7 @@ describe('Change Streams', function () {
11431143
expect(fullDocument.city).to.equal(expectedDoc.city);
11441144
break;
11451145
}
1146-
// eslint-disable-next-line no-unused-vars
1146+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
11471147
for await (const change of changeStream) {
11481148
expect.fail('Change stream was resumed after partial iteration');
11491149
}
@@ -2512,7 +2512,7 @@ describe('ChangeStream resumability', function () {
25122512
} as FailPoint);
25132513

25142514
try {
2515-
// eslint-disable-next-line no-unused-vars
2515+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
25162516
for await (const change of changeStream) {
25172517
expect.fail('Change stream produced events on an unresumable error');
25182518
}

0 commit comments

Comments
 (0)