Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nbbeeken committed Sep 11, 2024
1 parent deecc81 commit ab9fd81
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/integration/change-streams/change_stream.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -837,8 +837,8 @@ describe('Change Streams', function () {
status === 'rejected'
? reason.message
: value.operationType === 'insert'
? `insert count = ${value.fullDocument.insertCount}`
: null;
? `insert count = ${value.fullDocument.insertCount}`
: null;
return `${status}:${res}`;
});

Expand All @@ -865,8 +865,8 @@ describe('Change Streams', function () {
status === 'rejected'
? reason.message
: value.operationType === 'insert'
? `insert count = ${value.fullDocument.insertCount}`
: null;
? `insert count = ${value.fullDocument.insertCount}`
: null;
return `${status}:${res}`;
});

Expand Down Expand Up @@ -897,8 +897,8 @@ describe('Change Streams', function () {
status === 'rejected'
? reason.message
: value.operationType === 'insert'
? `insert count = ${value.fullDocument.insertCount}`
: null;
? `insert count = ${value.fullDocument.insertCount}`
: null;
return `${status}:${res}`;
});

Expand Down

0 comments on commit ab9fd81

Please sign in to comment.