Skip to content

Commit

Permalink
fix assert
Browse files Browse the repository at this point in the history
  • Loading branch information
alistair-singh committed Dec 19, 2024
1 parent 10b4343 commit 89b9e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smoketest/tests/transfer_native_eth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,5 @@ async fn transfer_native_eth() {
}
assert!(transfer_event_found);
let balance_after = ethereum_client.get_balance(receiver, None).await.expect("fetch balance");
assert_eq!(balance_before, balance_after + amount)
assert_eq!(balance_before + amount, balance_after)
}

0 comments on commit 89b9e09

Please sign in to comment.