From 365a0f62cdd4e7e6924f50e352cf328d0ac504c9 Mon Sep 17 00:00:00 2001 From: Bertrand Zuchuat Date: Thu, 5 Jan 2023 09:28:06 +0100 Subject: [PATCH] test: fix interval for fees after extend Co-Authored-by: Bertrand Zuchuat --- tests/ui/circulation/test_actions_extend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ui/circulation/test_actions_extend.py b/tests/ui/circulation/test_actions_extend.py index 8cef711603..4d5815f712 100644 --- a/tests/ui/circulation/test_actions_extend.py +++ b/tests/ui/circulation/test_actions_extend.py @@ -73,7 +73,7 @@ def test_fees_after_extend( # UPDATE LOAN TO BE OVERDUE # LIBRARY FIXTURES EXCEPTION: Christmas Holidays is 15 days - interval = 15 + interval = 20 while not loan.is_loan_overdue(): new_end_date = datetime.now(timezone.utc) - timedelta(days=interval) loan['end_date'] = new_end_date.isoformat()