remove Refilling.is_validated

This commit is contained in:
imperosol
2025-11-19 20:05:35 +01:00
parent 78fe4e52ca
commit 56c2c2b70e
6 changed files with 20 additions and 18 deletions

View File

@@ -53,7 +53,7 @@ def set_age(user: User, age: int):
def force_refill_user(user: User, amount: Decimal | int):
baker.make(Refilling, amount=amount, customer=user.customer, is_validated=False)
baker.make(Refilling, amount=amount, customer=user.customer)
class TestFullClickBase(TestCase):