Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
Signed-off-by: nikolay <[email protected]>
  • Loading branch information
natanasow committed Jul 19, 2022
1 parent ec34a2a commit e0e501b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/tests/acceptance/rpc.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ describe('RPC Server Acceptance Tests', function () {

const log0BlockInt = parseInt(log0Block.blockNumber);
for (let i in logs) {
expect(logs[i].blockNumber).to.be.lessThanOrEqual(log0BlockInt);
expect(parseInt(logs[i].blockNumber, 16)).to.be.lessThanOrEqual(log0BlockInt);
}
});

Expand Down

0 comments on commit e0e501b

Please sign in to comment.