From 2e690f49bb2073411925fb00a98678db4f3a0a8a Mon Sep 17 00:00:00 2001 From: Georges-Antoine Assi Date: Tue, 26 Aug 2025 21:17:27 -0400 Subject: [PATCH] fix tests --- backend/tests/tasks/test_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tests/tasks/test_tasks.py b/backend/tests/tasks/test_tasks.py index d235e8d23..9cf899f31 100644 --- a/backend/tests/tasks/test_tasks.py +++ b/backend/tests/tasks/test_tasks.py @@ -132,7 +132,7 @@ class TestPeriodicTask: result = task.schedule() mock_cron.assert_called_once_with( - "0 0 * * *", func="test.function", repeat=None + "0 0 * * *", func="test.function", repeat=None, timeout=5 * 60 ) assert result == mock_job