Skip to content

Commit e5411be

Browse files
committed
fix test condition
1 parent 7ab1e9a commit e5411be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/__tests__/Queue.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ describe('Queue Basics', () => {
6969
});
7070
it('handle attempts correctly', (done) => {
7171
const onQueueFinish = () => {
72-
expect(executer).toBeCalledTimes(6);
72+
expect(executer).toBeCalledTimes(5);
7373
done();
7474
};
7575
const executer = jest.fn(() => {

0 commit comments

Comments
 (0)