Skip to content

Commit

Permalink
fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
perekopskiy committed Jan 11, 2025
1 parent 8947c0d commit 83a0f92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tests/ts-integration/tests/base-token.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ describe('base ERC20 contract checks', () => {
// TODO: should all the following tests use strict equality?

const finalEthBalance = await alice.getBalanceL1();
expect(initialEthBalance).toBeGreaterThan(finalEthBalance + fee); // Fee should be taken from the ETH balance on L1.
expect(initialEthBalance).toBeGreaterThanOrEqual(finalEthBalance + fee); // Fee should be taken from the ETH balance on L1.

const finalL1Balance = await alice.getBalanceL1(baseTokenDetails.l1Address);
expect(initialL1Balance).toBeGreaterThanOrEqual(finalL1Balance + amount);
Expand Down

0 comments on commit 83a0f92

Please sign in to comment.