diff options
| author | Jenkins <jenkins@review.openstack.org> | 2016-02-08 16:21:00 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2016-02-08 16:21:01 +0000 |
| commit | 624c39ab1bb060e35253b78c842d41ebc1807ae5 (patch) | |
| tree | dcc2de0d997f6f076f4b281782e36b02bf8972a4 /openstackclient/tests/compute/v2/test_security_group.py | |
| parent | f781349974b249d0413c3f92eb9921df3919df2a (diff) | |
| parent | 23faa33b1b2914bbc3e103fca75fde70eb317021 (diff) | |
| download | python-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.py | 8 |
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) |
