Skip to content
This repository has been archived by the owner on Sep 18, 2020. It is now read-only.

Commit

Permalink
integration test: assert that home contract balance back to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
snd committed Feb 27, 2018
1 parent 2ea7f67 commit cca0f01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration-tests/tests/basic_deposit_then_withdraw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ fn test_basic_deposit_then_withdraw() {

// ensure home contract balance has decreased
let balance = event_loop.run(home_eth.balance(home_contract_address.into(), None)).unwrap();
assert_eq!(balance, web3::types::U256::from(100000000));
assert_eq!(balance, web3::types::U256::from(0));

println!("\nconfirmed that withdraw reached home\n");

Expand Down

0 comments on commit cca0f01

Please sign in to comment.