remove Refilling.bank

This commit is contained in:
imperosol
2025-11-19 20:18:49 +01:00
parent 56c2c2b70e
commit ad87617018
7 changed files with 8 additions and 36 deletions

View File

@@ -186,7 +186,9 @@ class TestFilterInactive(TestCase):
time_active = now() - settings.SITH_ACCOUNT_INACTIVITY_DELTA + timedelta(days=1)
time_inactive = time_active - timedelta(days=3)
counter, seller = baker.make(Counter), baker.make(User)
sale_recipe = Recipe(Selling, counter=counter, club=counter.club, seller=seller)
sale_recipe = Recipe(
Selling, counter=counter, club=counter.club, seller=seller, unit_price=0
)
cls.users = [
baker.make(User),