From 532ac1ccfdc3ff46d02016cc0da639fd7a862d98 Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Sun, 19 Jul 2026 21:56:13 +0000 Subject: [PATCH] test: Fix timeshift test for is_catchup_enabled --- apps/timeshift/tests/test_views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/timeshift/tests/test_views.py b/apps/timeshift/tests/test_views.py index 40014949..529af030 100644 --- a/apps/timeshift/tests/test_views.py +++ b/apps/timeshift/tests/test_views.py @@ -5327,6 +5327,7 @@ class CatchupProxyTests(TestCase): with patch.object(views, "network_access_allowed", return_value=True), \ patch.object(views, "Channel") as channel_cls, \ patch.object(views, "_user_can_access_channel", return_value=True), \ + patch.object(views, "is_catchup_enabled", return_value=True), \ patch.object(views, "get_channel_catchup_streams", return_value=[_make_catchup_stream()]), \ patch.object(views, "resolve_catchup_duration", return_value=40), \