From aba3bbd0594982c7f696c481be1a90dcec475bba Mon Sep 17 00:00:00 2001 From: Matej Vasek Date: Tue, 23 Mar 2021 16:36:23 +0100 Subject: fix: build endpoint for compat API Signed-off-by: Matej Vasek --- test/python/docker/compat/test_images.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/python/docker/compat/test_images.py') 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"]) -- cgit v1.2.3-54-g00ecf