summaryrefslogtreecommitdiff
path: root/functional/tests/object
diff options
context:
space:
mode:
authorTerryHowe <terrylhowe@gmail.com>2015-06-01 14:20:39 -0600
committerTerryHowe <terrylhowe@gmail.com>2015-06-02 05:26:25 -0600
commit746f6421d0490d41b1a3b7b0e014d0a7fe457afd (patch)
tree9926fc62d1299b366b69a92619e590fa8a1bb44a /functional/tests/object
parent40634c3f2cec4c23e2123b3ff5cdc447f26cf977 (diff)
downloadpython-openstackclient-746f6421d0490d41b1a3b7b0e014d0a7fe457afd.tar.gz
Add image functional tests
Change-Id: I30b219bc3393fcb197bda266125dcfb5c8780a3e
Diffstat (limited to 'functional/tests/object')
-rw-r--r--functional/tests/object/v1/test_container.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functional/tests/object/v1/test_container.py b/functional/tests/object/v1/test_container.py
index 9ea14cde..8721a4a7 100644
--- a/functional/tests/object/v1/test_container.py
+++ b/functional/tests/object/v1/test_container.py
@@ -23,7 +23,7 @@ class ContainerTests(test.TestCase):
def setUpClass(cls):
opts = cls.get_list_opts(['container'])
raw_output = cls.openstack('container create ' + cls.NAME + opts)
- expected = 'container\n' + cls.NAME + '\n'
+ expected = '"container"\n"' + cls.NAME + '"\n'
cls.assertOutput(expected, raw_output)
@classmethod