From cb2ee89aeef1bd0fa4c93b86ef3b2600af3797e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Misty=20De=20M=C3=A9o?= Date: Fri, 18 Jul 2025 15:30:44 -0700 Subject: [PATCH] tests: fix out of date frontier fixture --- tests/test_frontier.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_frontier.py b/tests/test_frontier.py index e5d5b79..e04d207 100644 --- a/tests/test_frontier.py +++ b/tests/test_frontier.py @@ -68,6 +68,7 @@ def test_basics(rethinker): "seeds": [{"url": "http://example.com"}, {"url": "https://example.org/"}] }, "status": "ACTIVE", + "pdfs_only": False, "starts_and_stops": [{"start": job.starts_and_stops[0]["start"], "stop": None}], } @@ -83,11 +84,11 @@ def test_basics(rethinker): "last_disclaimed": brozzler.EPOCH_UTC, "scope": {"accepts": [{"ssurt": "com,example,//http:/"}]}, "seed": "http://example.com", - "skip_ytdlp": None, "starts_and_stops": [ {"start": sites[0].starts_and_stops[0]["start"], "stop": None} ], "status": "ACTIVE", + "video_capture": "ENABLE_VIDEO_CAPTURE", } assert sites[1] == { "claimed": False, @@ -97,7 +98,6 @@ def test_basics(rethinker): "last_disclaimed": brozzler.EPOCH_UTC, "scope": {"accepts": [{"ssurt": "org,example,//https:/"}]}, "seed": "https://example.org/", - "skip_ytdlp": None, "starts_and_stops": [ { "start": sites[1].starts_and_stops[0]["start"], @@ -105,6 +105,7 @@ def test_basics(rethinker): }, ], "status": "ACTIVE", + "video_capture": "ENABLE_VIDEO_CAPTURE", } pages = list(frontier.site_pages(sites[0].id))