This commit is contained in:
Raphael Michel
2022-04-27 14:43:16 +02:00
committed by GitHub
parent 7730cc6170
commit 6fee0ac0a9
56 changed files with 4159 additions and 480 deletions

View File

@@ -938,7 +938,7 @@ def test_order_extend_expired_voucher_budget_ok(client, env):
)
p = o.positions.first()
p.voucher = v
p.price_before_voucher = p.price
p.voucher_budget_use = Decimal('1.50')
p.price -= Decimal('1.50')
p.save()
@@ -969,7 +969,7 @@ def test_order_extend_expired_voucher_budget_fail(client, env):
)
p = o.positions.first()
p.voucher = v
p.price_before_voucher = p.price
p.voucher_budget_use = Decimal('1.50')
p.price -= Decimal('1.50')
p.save()