From cca0f011c9e62d2b94015eb45745710427c6b2ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Kru=CC=88ger?= Date: Tue, 27 Feb 2018 11:59:56 +0100 Subject: [PATCH] integration test: assert that home contract balance back to 0 --- integration-tests/tests/basic_deposit_then_withdraw.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/tests/basic_deposit_then_withdraw.rs b/integration-tests/tests/basic_deposit_then_withdraw.rs index 90108dff..58cfbf27 100644 --- a/integration-tests/tests/basic_deposit_then_withdraw.rs +++ b/integration-tests/tests/basic_deposit_then_withdraw.rs @@ -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");