Skip to content

Commit

Permalink
D3ASIM-2314: Fixed integration tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
spyrostz committed Apr 30, 2020
1 parent 635c368 commit 3acfe7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_tests/steps/integration_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ def assert_area_cumulative_bills(area):
estimated_total = area_bills["spent_total"] - area_bills["earned"] + \
area_bills["penalties"]
assert isclose(area_bills["total"], estimated_total, rel_tol=1e-2)
assert isclose(bills[area.uuid]["spent"],
assert isclose(bills[area.uuid]["spent"] + bills[area.uuid]["market_fee"],
cumulative_bills[area.uuid]["spent_total"], rel_tol=1e-2)
return
child_uuids = [child.uuid for child in area.children]
Expand Down

0 comments on commit 3acfe7a

Please sign in to comment.