diff options
author | Matej Vasek <mvasek@redhat.com> | 2021-03-23 16:36:23 +0100 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2021-03-29 13:25:32 -0400 |
commit | 31351ad94bf961a1e2341abbdf66145073445526 (patch) | |
tree | 6fe7df84ae68ef15234a240888b79e873fd548eb /test/python/docker | |
parent | 7148544df0383713e663ae26ad9a6a7e6e0b27e9 (diff) | |
download | podman-31351ad94bf961a1e2341abbdf66145073445526.tar.gz podman-31351ad94bf961a1e2341abbdf66145073445526.tar.bz2 podman-31351ad94bf961a1e2341abbdf66145073445526.zip |
fix: build endpoint for compat API
Signed-off-by: Matej Vasek <mvasek@redhat.com>
Diffstat (limited to 'test/python/docker')
-rw-r--r-- | test/python/docker/compat/test_images.py | 2 |
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"]) |