We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e56b444 commit bf5db55Copy full SHA for bf5db55
unit_test/oci_container_test.py
@@ -83,7 +83,7 @@ def test_cwd(container_engine):
83
def test_container_removed(container_engine):
84
with OCIContainer(engine=container_engine, image=DEFAULT_IMAGE) as container:
85
docker_containers_listing = subprocess.run(
86
- f"{container.engine} container ls",
+ f"{container.engine.name} container ls",
87
shell=True,
88
check=True,
89
stdout=subprocess.PIPE,
@@ -94,7 +94,7 @@ def test_container_removed(container_engine):
94
old_container_name = container.name
95
96
97
98
99
100
0 commit comments