Skip to content

Commit

Permalink
chore: fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
andymina committed Oct 24, 2022
1 parent b0ac290 commit dd1a27c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/change-streams/change_stream.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2280,7 +2280,7 @@ describe('ChangeStream resumability', function () {
);

context('when the error is not a resumable error', function () {
it.only(
it(
'does not resume',
{ requires: { topology: '!single', mongodb: '>=4.2' } },
async function () {
Expand All @@ -2303,7 +2303,7 @@ describe('ChangeStream resumability', function () {
await collection.insertOne({ city: 'New York City' });
try {
for await (const change of changeStream) {
expect.fail('Change stream produced changes on an unresumable error');
expect.fail('Change stream produced events on an unresumable error');
}

expect.fail(
Expand Down

0 comments on commit dd1a27c

Please sign in to comment.