Skip to content

Commit 4c73ea0

Browse files
fix urls
1 parent 037d651 commit 4c73ea0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/director-v2/tests/unit/test_modules_dynamic_sidecar_client_api_thin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ async def test_get_containers_name(
191191
mock_request(
192192
"GET",
193193
(
194-
f"{dynamic_sidecar_endpoint}/{thin_client.API_VERSION}"
194+
f"{dynamic_sidecar_endpoint}{thin_client.API_VERSION}"
195195
f"/containers/name?filters={encoded_filters}"
196196
),
197197
mock_response,
@@ -353,7 +353,7 @@ async def test_post_containers_tasks(
353353
mock_response = Response(status.HTTP_202_ACCEPTED, json="mocked_task_id")
354354
mock_request(
355355
"POST",
356-
f"{dynamic_sidecar_endpoint}/{thin_client.API_VERSION}{mock_endpoint}",
356+
f"{dynamic_sidecar_endpoint}{thin_client.API_VERSION}{mock_endpoint}",
357357
mock_response,
358358
None,
359359
)

0 commit comments

Comments
 (0)