Skip to content

Commit aa1fbc8

Browse files
fix lint
1 parent ea2d4ce commit aa1fbc8

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ describe('Change Streams', function () {
875875
await lastWrite().catch(() => null);
876876

877877
let counter = 0;
878-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
878+
879879
for await (const _ of changes) {
880880
counter += 1;
881881
if (counter === 2) {
@@ -1027,7 +1027,6 @@ describe('Change Streams', function () {
10271027
changeStream = collection.watch();
10281028

10291029
const loop = (async function () {
1030-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
10311030
for await (const _change of changeStream) {
10321031
return 'loop entered'; // loop should never be entered
10331032
}

test/unit/mongo_logger.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,6 @@ describe('class MongoLogger', function () {
10521052

10531053
context('when serviceId is not present', function () {
10541054
beforeEach(function () {
1055-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
10561055
const { serviceId: _, ...connectionPoolClearedNoServiceId } =
10571056
connectionPoolCleared;
10581057
logger[severityLevel]('connection', connectionPoolClearedNoServiceId);

0 commit comments

Comments
 (0)