Skip to content

Commit 5c672af

Browse files
committed
fix: lint
1 parent 22adaa1 commit 5c672af

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

workflowai/core/client/client_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,11 @@ async def test_run_retries_on_too_many_requests(self, httpx_mock: HTTPXMock, cli
148148
assert task_run.id == "8f635b73-f403-47ee-bff9-18320616c6cc"
149149

150150
reqs = httpx_mock.get_requests()
151-
assert len(reqs) == 2
151+
assert len(reqs) == 2
152152
assert reqs[0].url == "http://localhost:8000/tasks/123/schemas/1/run"
153153
assert reqs[1].url == "http://localhost:8000/tasks/123/schemas/1/run"
154154

155+
155156
class TestImportRun:
156157
async def test_success(self, httpx_mock: HTTPXMock, client: Client):
157158
httpx_mock.add_response(json=fixtures_json("task_run.json"))

0 commit comments

Comments
 (0)