Skip to content
This repository has been archived by the owner on Jun 13, 2019. It is now read-only.

Commit

Permalink
Merge pull request #92 from boolafish/small_fix
Browse files Browse the repository at this point in the history
Change delta from 0.01 to 0.05 for latest ganache
  • Loading branch information
bun919tw authored Aug 21, 2018
2 parents 9c85210 + b8947cb commit 6e1c634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_tests/features/steps/basic_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 6e1c634

Please sign in to comment.