Skip to content

Commit

Permalink
fix: falling test
Browse files Browse the repository at this point in the history
  • Loading branch information
olehbairak committed Aug 22, 2024
1 parent 572e068 commit a9e2102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/integration-tests/tests/api/logs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ describe("API module: Logs", () => {
expect(response.body.result[0].data.length).toBe(194);
expect(typeof response.body.result[0].blockNumber).toStrictEqual("string");
expect(response.body.result[0].blockNumber.startsWith("0x")).toBe(true);
expect(response.body.result[0].blockNumber.length).toBe(4);
expect(response.body.result[0].blockNumber.length).toBeGreaterThan(2);
expect(typeof response.body.result[0].timeStamp).toStrictEqual("string");
expect(response.body.result[0].timeStamp.startsWith("0x")).toBe(true);
expect(response.body.result[0].timeStamp.length).toBe(10);
Expand Down

0 comments on commit a9e2102

Please sign in to comment.