Skip to content

Commit cfa5b2f

Browse files
committed
fix: fmt
1 parent 7d68562 commit cfa5b2f

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

tests/asyncio/test_message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

tests/asyncio/test_url_group.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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)

tests/test_url_group.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)