Removed reference to transfer billtype in test

This commit is contained in:
Tom Roussel 2024-03-24 13:49:16 +01:00 committed by zorun
parent a3009126dc
commit a74cd97286

View file

@ -717,18 +717,6 @@ class TestBudget(IhatemoneyTestCase):
},
)
# transfer bill should not affect balances at all
self.client.post(
"/raclette/add",
data={
"date": "2011-08-10",
"what": "Transfer",
"payer": members_ids[1],
"payed_for": members_ids[0],
"bill_type": "Transfer",
"amount": "500",
},
)
balance = self.get_project("raclette").balance
assert set(balance.values()) == set([19.0, -19.0])