summaryrefslogtreecommitdiff
path: root/openstackclient/tests/compute/v2/test_security_group.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-02-08 16:21:00 +0000
committerGerrit Code Review <review@openstack.org>2016-02-08 16:21:01 +0000
commit624c39ab1bb060e35253b78c842d41ebc1807ae5 (patch)
treedcc2de0d997f6f076f4b281782e36b02bf8972a4 /openstackclient/tests/compute/v2/test_security_group.py
parentf781349974b249d0413c3f92eb9921df3919df2a (diff)
parent23faa33b1b2914bbc3e103fca75fde70eb317021 (diff)
downloadpython-openstackclient-624c39ab1bb060e35253b78c842d41ebc1807ae5.tar.gz
Merge "Compute: Fix DisplayCommandBase comments for cliff ShowOne subclass tests"
Diffstat (limited to 'openstackclient/tests/compute/v2/test_security_group.py')
-rw-r--r--openstackclient/tests/compute/v2/test_security_group.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/openstackclient/tests/compute/v2/test_security_group.py b/openstackclient/tests/compute/v2/test_security_group.py
index e500125a..79eefe6c 100644
--- a/openstackclient/tests/compute/v2/test_security_group.py
+++ b/openstackclient/tests/compute/v2/test_security_group.py
@@ -87,7 +87,9 @@ class TestSecurityGroupCreate(TestSecurityGroup):
]
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
- # DisplayCommandBase.take_action() returns two tuples
+ # In base command class ShowOne in cliff, abstractmethod take_action()
+ # returns a two-part tuple with a tuple of column names and a tuple of
+ # data to be shown.
columns, data = self.cmd.take_action(parsed_args)
# SecurityGroupManager.create(name, description)
@@ -110,7 +112,9 @@ class TestSecurityGroupCreate(TestSecurityGroup):
]
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
- # DisplayCommandBase.take_action() returns two tuples
+ # In base command class ShowOne in cliff, abstractmethod take_action()
+ # returns a two-part tuple with a tuple of column names and a tuple of
+ # data to be shown.
columns, data = self.cmd.take_action(parsed_args)
# SecurityGroupManager.create(name, description)