Skip to content

Commit a34dfdd

Browse files
fix url type
1 parent e283d7e commit a34dfdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/director-v2/tests/integration/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ async def _creator(
108108
responses: list[httpx.Response] = await asyncio.gather(
109109
*(
110110
async_client.request(
111-
"DELETE", task.url, json={"user_id": user_id, "force": True}
111+
"DELETE", f"{task.url}", json={"user_id": user_id, "force": True}
112112
)
113113
for user_id, task in created_comp_tasks
114114
)

0 commit comments

Comments
 (0)