Skip to content

Commit 2e07e12

Browse files
Test fix
1 parent 1628f76 commit 2e07e12

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

packages/firestore/test/unit/util/async_queue.test.ts

+1-7
Original file line numberDiff line numberDiff line change
@@ -206,13 +206,7 @@ describe('AsyncQueue', () => {
206206
queue.enqueueAndForget(() => doStep(2));
207207

208208
await queue.runAllDelayedOperationsUntil(timerId3);
209-
expect(completedSteps).to.deep.equal([1, 2, 4]);
210-
211-
await queue.runAllDelayedOperationsUntil(timerId2);
212-
expect(completedSteps).to.deep.equal([1, 2, 4, 3]);
213-
214-
await queue.runAllDelayedOperationsUntil(timerId1);
215-
expect(completedSteps).to.deep.equal([1, 2, 4, 3, 5]);
209+
expect(completedSteps).to.deep.equal([1, 2, 3, 4]);
216210
});
217211

218212
it('Retries retryable operations', async () => {

0 commit comments

Comments
 (0)