diff options
| author | Tang Chen <chen.tang@easystack.cn> | 2016-02-10 19:01:52 +0800 |
|---|---|---|
| committer | Tang Chen <chen.tang@easystack.cn> | 2016-02-10 19:01:52 +0800 |
| commit | e1feed52217012da285ef94144ed82704b20d4e7 (patch) | |
| tree | 351d51236ba80e7a2157f56d49ec17c5bc5b488d /openstackclient/tests/compute/v2/test_hypervisor.py | |
| parent | 35833f7bd82ac5d7cad4b5fba0e498d8936e6f48 (diff) | |
| download | python-openstackclient-e1feed52217012da285ef94144ed82704b20d4e7.tar.gz | |
Trivial: Fix "abstractmethod" to "abstract method"
As Richard <rtheis@us.ibm.com> has pointed out, "abstractmethod"
should be "abstract method". This is a small typo I have made
when I fix DisplayCommandBase comment bug.
Change-Id: I84f1a3158896257686a0a7efa1123eef1b85139f
Partial-bug: #1477199
Diffstat (limited to 'openstackclient/tests/compute/v2/test_hypervisor.py')
| -rw-r--r-- | openstackclient/tests/compute/v2/test_hypervisor.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openstackclient/tests/compute/v2/test_hypervisor.py b/openstackclient/tests/compute/v2/test_hypervisor.py index a11f59d2..8d717ba7 100644 --- a/openstackclient/tests/compute/v2/test_hypervisor.py +++ b/openstackclient/tests/compute/v2/test_hypervisor.py @@ -67,7 +67,7 @@ class TestHypervisorList(TestHypervisor): verifylist = [] 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) @@ -94,7 +94,7 @@ class TestHypervisorList(TestHypervisor): ), ) - # 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) @@ -211,7 +211,7 @@ class TestHypervisorShow(TestHypervisor): ] 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) |
