summaryrefslogtreecommitdiff
path: root/openstackclient/tests/functional
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-01-21 06:18:08 +0000
committerGerrit Code Review <review@openstack.org>2017-01-21 06:18:08 +0000
commitbf3f12f5969dff262077c83bdbfa6d934aa43648 (patch)
treefdc6922f03f221bd5b736d53c7c1038fe785d09a /openstackclient/tests/functional
parent89d9449dcfd4679e8d786c73df4be67af8e3b04a (diff)
parentf353253122ca39aeb092656cea011a06e70103a4 (diff)
downloadpython-openstackclient-bf3f12f5969dff262077c83bdbfa6d934aa43648.tar.gz
Merge "Error in the return of command 'volume qos create'"
Diffstat (limited to 'openstackclient/tests/functional')
-rw-r--r--openstackclient/tests/functional/volume/v2/test_qos.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/tests/functional/volume/v2/test_qos.py b/openstackclient/tests/functional/volume/v2/test_qos.py
index a54acbfd..1558c216 100644
--- a/openstackclient/tests/functional/volume/v2/test_qos.py
+++ b/openstackclient/tests/functional/volume/v2/test_qos.py
@@ -50,13 +50,13 @@ class QosTests(common.BaseVolumeTests):
raw_output = self.openstack(
'volume qos set --property a=b --property c=d ' + self.ID)
self.assertEqual("", raw_output)
- opts = self.get_opts(['name', 'specs'])
+ opts = self.get_opts(['name', 'properties'])
raw_output = self.openstack('volume qos show ' + self.ID + opts)
self.assertEqual(self.NAME + "\na='b', c='d'\n", raw_output)
raw_output = self.openstack(
'volume qos unset --property a ' + self.ID)
self.assertEqual("", raw_output)
- opts = self.get_opts(['name', 'specs'])
+ opts = self.get_opts(['name', 'properties'])
raw_output = self.openstack('volume qos show ' + self.ID + opts)
self.assertEqual(self.NAME + "\nc='d'\n", raw_output)