Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
denver-s committed Aug 24, 2023
1 parent 16f5f58 commit 34dd981
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/regression/test_attempt_single_batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,5 +153,5 @@ def test_attempt_single_batch_KT(sign, request_url, request_url_post):
)
assert status == PaymentStatus.DONE
assert operation_hash is None
assert reward_log.delegator_transaction_fee == 9004
assert reward_log.delegator_transaction_fee == 8724
assert opt_counter.counter == 4
2 changes: 1 addition & 1 deletion tests/regression/test_simulate_single_operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def test_simulate_single_operation():
assert PaymentStatus.DONE == simulation_status
consumed_gas, tx_fee, storage = simulation_results
assert 250 == consumed_gas
assert 323.0 == default_fee + consumed_gas * MUTEZ_PER_GAS_UNIT
assert 295.0 == default_fee + consumed_gas * MUTEZ_PER_GAS_UNIT
assert int == type(storage) # type of storage should be int
assert 24 == storage

Expand Down

0 comments on commit 34dd981

Please sign in to comment.