Skip to content

Commit

Permalink
fix: amount in test fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mohiiit committed Nov 4, 2024
1 parent bdc8b80 commit 2ce31a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/eth_bridge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub async fn eth_bridge_test_helper(
let balance_after =
read_erc20_balance(clients.provider_l2(), l2_eth_address, Felt::from_hex(L2_DEPLOYER_ADDRESS).unwrap()).await;

assert_eq!(balance_before[0] + Felt::from_dec_str("12").unwrap(), balance_after[0]);
assert_eq!(balance_before[0] + Felt::from_dec_str("10").unwrap(), balance_after[0]);

// Note: we are ignoring the withdrawal tests here, it would be part of e2e where
// we have orch running as well
Expand Down

0 comments on commit 2ce31a6

Please sign in to comment.