diff --git a/functional/tests/image/v2/test_image.py b/functional/tests/image/v2/test_image.py index 6a33ad88e1..2e2b59bbbd 100644 --- a/functional/tests/image/v2/test_image.py +++ b/functional/tests/image/v2/test_image.py @@ -13,6 +13,8 @@ import os import uuid +import testtools + from functional.common import test @@ -66,6 +68,7 @@ class ImageTests(test.TestCase): raw_output = self.openstack('image show ' + self.NAME + opts) self.assertEqual(self.NAME + "\na='b', c='d'\n", raw_output) + @testtools.skip("skip until bug 1596573 is resolved") def test_image_unset(self): opts = self.get_show_opts(["name", "tags", "properties"]) self.openstack('image set --tag 01 ' + self.NAME)