Skip to content

Commit

Permalink
test: fix eth balance
Browse files Browse the repository at this point in the history
  • Loading branch information
graykode committed Jul 31, 2024
1 parent d11e71b commit 7b1c71c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/open-order.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ test('claim bid order', async () => {
])
).map((order) => order.claimable),
).toEqual([0n])
expect(afterBalance).greaterThan(beforeBalance)
expect(Number(afterBalance)).greaterThan(Number(beforeBalance))
expect(result.direction).toEqual('out')
expect(result.currency.address).toEqual(
'0x0000000000000000000000000000000000000000',
Expand Down

0 comments on commit 7b1c71c

Please sign in to comment.