Skip to content

Commit bb66dbc

Browse files
committed
fixup! feat: Revamp Gateway Task design
Signed-off-by: Phoevos Kalemkeris <[email protected]>
1 parent 5be03f1 commit bb66dbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/test_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def test_get_task_by_uuid(client: TestClient, config: Config):
104104
assert response.json() == {"detail": f"Task '{task_uuid}' not found"}
105105

106106
tm: TaskManager = config.task_manager
107-
task = tm.create_task(status="pending")
107+
task = tm.create_task()
108108
response = client.get(f"/tasks/{task.uuid}")
109109
assert response.status_code == 200
110110
assert response.json() == {"uuid": task.uuid, "status": "pending"}

0 commit comments

Comments
 (0)