Skip to content

Commit cb2ee89

Browse files
committed
tests: fix out of date frontier fixture
1 parent 306e55d commit cb2ee89

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/test_frontier.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ def test_basics(rethinker):
6868
"seeds": [{"url": "http://example.com"}, {"url": "https://example.org/"}]
6969
},
7070
"status": "ACTIVE",
71+
"pdfs_only": False,
7172
"starts_and_stops": [{"start": job.starts_and_stops[0]["start"], "stop": None}],
7273
}
7374

@@ -83,11 +84,11 @@ def test_basics(rethinker):
8384
"last_disclaimed": brozzler.EPOCH_UTC,
8485
"scope": {"accepts": [{"ssurt": "com,example,//http:/"}]},
8586
"seed": "http://example.com",
86-
"skip_ytdlp": None,
8787
"starts_and_stops": [
8888
{"start": sites[0].starts_and_stops[0]["start"], "stop": None}
8989
],
9090
"status": "ACTIVE",
91+
"video_capture": "ENABLE_VIDEO_CAPTURE",
9192
}
9293
assert sites[1] == {
9394
"claimed": False,
@@ -97,14 +98,14 @@ def test_basics(rethinker):
9798
"last_disclaimed": brozzler.EPOCH_UTC,
9899
"scope": {"accepts": [{"ssurt": "org,example,//https:/"}]},
99100
"seed": "https://example.org/",
100-
"skip_ytdlp": None,
101101
"starts_and_stops": [
102102
{
103103
"start": sites[1].starts_and_stops[0]["start"],
104104
"stop": None,
105105
},
106106
],
107107
"status": "ACTIVE",
108+
"video_capture": "ENABLE_VIDEO_CAPTURE",
108109
}
109110

110111
pages = list(frontier.site_pages(sites[0].id))

0 commit comments

Comments
 (0)