summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-03-24 05:32:27 -0700
committerGitHub <noreply@github.com>2021-03-24 05:32:27 -0700
commitaf91f27d85f4104267eea493f8588f8c6a2d01e3 (patch)
treeea6d634f2214c3d6e30798e52c0ac47f7461511a /test
parentf88ec049409ef30902f1cdae87b16b0315930f09 (diff)
parent4db4c65443b35c10c1de7224deeb13548419daa1 (diff)
downloadpodman-af91f27d85f4104267eea493f8588f8c6a2d01e3.tar.gz
podman-af91f27d85f4104267eea493f8588f8c6a2d01e3.tar.bz2
podman-af91f27d85f4104267eea493f8588f8c6a2d01e3.zip
Merge pull request #9790 from matejvasek/fix-isolation-serde
fix: build endpoint for compat API
Diffstat (limited to 'test')
-rw-r--r--test/python/docker/compat/test_images.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/python/docker/compat/test_images.py b/test/python/docker/compat/test_images.py
index 571b31881..1e2b531b7 100644
--- a/test/python/docker/compat/test_images.py
+++ b/test/python/docker/compat/test_images.py
@@ -158,7 +158,7 @@ class TestImages(unittest.TestCase):
def test_build_image(self):
labels = {"apple": "red", "grape": "green"}
_ = self.client.images.build(
- path="test/python/docker/build_labels", labels=labels, tag="labels"
+ path="test/python/docker/build_labels", labels=labels, tag="labels", isolation="default"
)
image = self.client.images.get("labels")
self.assertEqual(image.labels["apple"], labels["apple"])