mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-06 05:01:48 +02:00
format
This commit is contained in:
parent
d1c0bbbbe9
commit
f3bc1066c5
1 changed files with 3 additions and 1 deletions
|
@ -1661,7 +1661,9 @@ class BudgetTestCase(IhatemoneyTestCase):
|
||||||
|
|
||||||
# And switch project to no currency: amount should be equal to what was submitted
|
# And switch project to no currency: amount should be equal to what was submitted
|
||||||
project.switch_currency(converter.no_currency)
|
project.switch_currency(converter.no_currency)
|
||||||
no_currency_bills = [(bill.amount, bill.converted_amount) for bill in project.get_bills()]
|
no_currency_bills = [
|
||||||
|
(bill.amount, bill.converted_amount) for bill in project.get_bills()
|
||||||
|
]
|
||||||
assert no_currency_bills == [(5.0, 5.0), (10.0, 10.0)]
|
assert no_currency_bills == [(5.0, 5.0), (10.0, 10.0)]
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue