Skip to content

Commit dd1a27c

Browse files
committed
chore: fix linter error
1 parent b0ac290 commit dd1a27c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -2280,7 +2280,7 @@ describe('ChangeStream resumability', function () {
22802280
);
22812281

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

23092309
expect.fail(

0 commit comments

Comments
 (0)