summaryrefslogtreecommitdiff
path: root/openstackclient/tests/network/test_common.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-02-25 20:54:25 +0000
committerGerrit Code Review <review@openstack.org>2016-02-25 20:54:25 +0000
commit6176e802b3a4125e983eba3805f3f90881622bc4 (patch)
tree4a036acde45278cd2c9b22692ab34c220615514d /openstackclient/tests/network/test_common.py
parent43957d602b70ac718f0eab0fa30be5a4f20a5233 (diff)
parentf49f0fead2933ace4cb85c70bd14d13d0c479e6a (diff)
downloadpython-openstackclient-6176e802b3a4125e983eba3805f3f90881622bc4.tar.gz
Merge "Fixed a bunch of spacing"
Diffstat (limited to 'openstackclient/tests/network/test_common.py')
-rw-r--r--openstackclient/tests/network/test_common.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/openstackclient/tests/network/test_common.py b/openstackclient/tests/network/test_common.py
index 4700c66a..48608734 100644
--- a/openstackclient/tests/network/test_common.py
+++ b/openstackclient/tests/network/test_common.py
@@ -46,6 +46,7 @@ def _add_compute_argument(parser):
class FakeNetworkAndComputeCommand(common.NetworkAndComputeCommand):
+
def update_parser_common(self, parser):
return _add_common_argument(parser)
@@ -63,6 +64,7 @@ class FakeNetworkAndComputeCommand(common.NetworkAndComputeCommand):
class FakeNetworkAndComputeLister(common.NetworkAndComputeLister):
+
def update_parser_common(self, parser):
return _add_common_argument(parser)
@@ -80,6 +82,7 @@ class FakeNetworkAndComputeLister(common.NetworkAndComputeLister):
class FakeNetworkAndComputeShowOne(common.NetworkAndComputeShowOne):
+
def update_parser_common(self, parser):
return _add_common_argument(parser)
@@ -97,6 +100,7 @@ class FakeNetworkAndComputeShowOne(common.NetworkAndComputeShowOne):
class TestNetworkAndCompute(utils.TestCommand):
+
def setUp(self):
super(TestNetworkAndCompute, self).setUp()
@@ -150,18 +154,21 @@ class TestNetworkAndCompute(utils.TestCommand):
class TestNetworkAndComputeCommand(TestNetworkAndCompute):
+
def setUp(self):
super(TestNetworkAndComputeCommand, self).setUp()
self.cmd = FakeNetworkAndComputeCommand(self.app, self.namespace)
class TestNetworkAndComputeLister(TestNetworkAndCompute):
+
def setUp(self):
super(TestNetworkAndComputeLister, self).setUp()
self.cmd = FakeNetworkAndComputeLister(self.app, self.namespace)
class TestNetworkAndComputeShowOne(TestNetworkAndCompute):
+
def setUp(self):
super(TestNetworkAndComputeShowOne, self).setUp()
self.cmd = FakeNetworkAndComputeShowOne(self.app, self.namespace)