Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
darunrs committed Nov 8, 2023
1 parent 19e9406 commit 6cb07b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runner/src/redis-client/redis-client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe('RedisClient', () => {

expect(mockClient.xRead).toHaveBeenCalledWith(
{ key: 'streamKey', id: '0' },
{ BLOCK: 0, COUNT: 1 }
{ COUNT: 1 }
);
expect(message).toBeUndefined();
});
Expand All @@ -32,7 +32,7 @@ describe('RedisClient', () => {

expect(mockClient.xRead).toHaveBeenCalledWith(
{ key: 'streamKey', id: '123-0' },
{ BLOCK: 1000, COUNT: 10 }
{ COUNT: 10 }
);
expect(message).toBeUndefined();
});
Expand Down

0 comments on commit 6cb07b1

Please sign in to comment.