diff --git a/integration_tests/features/steps/basic_flow.py b/integration_tests/features/steps/basic_flow.py index 4bf662c..5a0eedf 100644 --- a/integration_tests/features/steps/basic_flow.py +++ b/integration_tests/features/steps/basic_flow.py @@ -119,4 +119,4 @@ def userB_finalize_exit(context): def userB_successfully_exit_from_root_chain_after_exit(context, amount): balance = w3.eth.getBalance(userB) assert_msg = 'balance: {} is not in around: {}'.format(w3.fromWei(balance, 'ether'), amount) - assert w3.toWei(amount - 0.01, 'ether') <= balance <= w3.toWei(amount, 'ether'), assert_msg + assert w3.toWei(amount - 0.05, 'ether') <= balance <= w3.toWei(amount, 'ether'), assert_msg