summaryrefslogtreecommitdiff
path: root/openstackclient/tests/compute/v2/test_security_group.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-02-12 03:45:32 +0000
committerGerrit Code Review <review@openstack.org>2016-02-12 03:45:32 +0000
commit91177828d8488bae761826c61aed322ce13886ec (patch)
treeda40c77defcbe498591f7ddd81b70a215ee5001c /openstackclient/tests/compute/v2/test_security_group.py
parent0cf8b29cfe175223bba9bc6128cc3b78babc543a (diff)
parente1feed52217012da285ef94144ed82704b20d4e7 (diff)
downloadpython-openstackclient-91177828d8488bae761826c61aed322ce13886ec.tar.gz
Merge "Trivial: Fix "abstractmethod" to "abstract method""
Diffstat (limited to 'openstackclient/tests/compute/v2/test_security_group.py')
-rw-r--r--openstackclient/tests/compute/v2/test_security_group.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/openstackclient/tests/compute/v2/test_security_group.py b/openstackclient/tests/compute/v2/test_security_group.py
index 79eefe6c..c6998cb5 100644
--- a/openstackclient/tests/compute/v2/test_security_group.py
+++ b/openstackclient/tests/compute/v2/test_security_group.py
@@ -87,7 +87,7 @@ class TestSecurityGroupCreate(TestSecurityGroup):
]
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
- # In base command class ShowOne in cliff, abstractmethod take_action()
+ # In base command class ShowOne in cliff, abstract method 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)
@@ -112,7 +112,7 @@ class TestSecurityGroupCreate(TestSecurityGroup):
]
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
- # In base command class ShowOne in cliff, abstractmethod take_action()
+ # In base command class ShowOne in cliff, abstract method 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)
@@ -159,7 +159,7 @@ class TestSecurityGroupList(TestSecurityGroup):
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
- # In base command class Lister in cliff, abstractmethod take_action()
+ # In base command class Lister in cliff, abstract method take_action()
# returns a tuple containing the column names and an iterable
# containing the data to be listed.
columns, data = self.cmd.take_action(parsed_args)