Skip to content

Commit 3ff2982

Browse files
committed
Fix tag
1 parent bdf2e31 commit 3ff2982

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/mock_vws/test_docker.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def test_build_and_run(
163163
name=target_manager_container_name,
164164
publish_all_ports=True,
165165
network=custom_bridge_network.name,
166-
version=target_manager_tag,
166+
version=target_manager_image.tags[0],
167167
)
168168
vws_container = client.containers.run(
169169
image=vws_image,
@@ -174,7 +174,7 @@ def test_build_and_run(
174174
environment={
175175
"TARGET_MANAGER_BASE_URL": target_manager_internal_base_url,
176176
},
177-
version=vws_tag,
177+
version=vws_image.tags[0],
178178
)
179179
vwq_container = client.containers.run(
180180
image=vwq_image,
@@ -185,7 +185,7 @@ def test_build_and_run(
185185
environment={
186186
"TARGET_MANAGER_BASE_URL": target_manager_internal_base_url,
187187
},
188-
version=vwq_tag,
188+
version=vwq_image.tags[0],
189189
)
190190

191191
for container in (target_manager_container, vws_container, vwq_container):

0 commit comments

Comments
 (0)