diff options
author | Matej Vasek <mvasek@redhat.com> | 2021-03-23 16:36:23 +0100 |
---|---|---|
committer | Matej Vasek <mvasek@redhat.com> | 2021-03-23 17:48:28 +0100 |
commit | aba3bbd0594982c7f696c481be1a90dcec475bba (patch) | |
tree | 782770e0d26b8a67cfcea72f1c29d787e53dfa1f /test/python/docker/compat | |
parent | 4d3e71ad28f75b51dc5fa7a29775ce30c9d5c437 (diff) | |
download | podman-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/docker/compat')
-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"]) |