summaryrefslogtreecommitdiff
path: root/test/python
diff options
context:
space:
mode:
authorMatej Vasek <mvasek@redhat.com>2021-03-23 16:36:23 +0100
committerMatej Vasek <mvasek@redhat.com>2021-03-23 17:48:28 +0100
commitaba3bbd0594982c7f696c481be1a90dcec475bba (patch)
tree782770e0d26b8a67cfcea72f1c29d787e53dfa1f /test/python
parent4d3e71ad28f75b51dc5fa7a29775ce30c9d5c437 (diff)
downloadpodman-aba3bbd0594982c7f696c481be1a90dcec475bba.tar.gz
podman-aba3bbd0594982c7f696c481be1a90dcec475bba.tar.bz2
podman-aba3bbd0594982c7f696c481be1a90dcec475bba.zip
fix: build endpoint for compat API
Signed-off-by: Matej Vasek <mvasek@redhat.com>
Diffstat (limited to 'test/python')
-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"])