File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -283,7 +283,7 @@ async def test_publish_to_url_group_async(async_client: AsyncQStash) -> None:
283283 url_group = name ,
284284 endpoints = [
285285 {"url" : "https://mock.httpstatus.io/200" },
286- {"url" : "https://httpstat.us /201" },
286+ {"url" : "https://mock.httpstatus.io /201" },
287287 ],
288288 )
289289
Original file line number Diff line number Diff line change @@ -21,7 +21,9 @@ async def test_url_group_async(async_client: AsyncQStash) -> None:
2121 assert any (
2222 True for e in url_group .endpoints if e .url == "https://mock.httpstatus.io/200"
2323 )
24- assert any (True for e in url_group .endpoints if e .url == "https://mock.httpstatus.io/201" )
24+ assert any (
25+ True for e in url_group .endpoints if e .url == "https://mock.httpstatus.io/201"
26+ )
2527
2628 url_groups = await async_client .url_group .list ()
2729 assert any (True for ug in url_groups if ug .name == name )
Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ def test_url_group(client: QStash) -> None:
1818 assert any (
1919 True for e in url_group .endpoints if e .url == "https://mock.httpstatus.io/200"
2020 )
21- assert any (True for e in url_group .endpoints if e .url == "https://mock.httpstatus.io/201" )
21+ assert any (
22+ True for e in url_group .endpoints if e .url == "https://mock.httpstatus.io/201"
23+ )
2224
2325 url_groups = client .url_group .list ()
2426 assert any (True for ug in url_groups if ug .name == name )
You can’t perform that action at this time.
0 commit comments