diff options
| author | Brandon Palm <bapalm@us.ibm.com> | 2016-02-23 10:38:58 -0600 |
|---|---|---|
| committer | Brandon Palm <bapalm@us.ibm.com> | 2016-02-23 10:38:58 -0600 |
| commit | f49f0fead2933ace4cb85c70bd14d13d0c479e6a (patch) | |
| tree | 8d3dacfb9fb599c23fdb489ad84daac804cab714 /openstackclient/tests/volume/v1 | |
| parent | 02e5b6f41d2b5f026ce1f1f5b7026d5968a7c20f (diff) | |
| download | python-openstackclient-f49f0fead2933ace4cb85c70bd14d13d0c479e6a.tar.gz | |
Fixed a bunch of spacing
Nothing too complicated here. I fixed a bunch of spacing issues
that I saw in OSC.
Change-Id: I935ab48e7c5bac5f88ecdb3a05f73fb44fc9f41d
Diffstat (limited to 'openstackclient/tests/volume/v1')
| -rw-r--r-- | openstackclient/tests/volume/v1/fakes.py | 3 | ||||
| -rw-r--r-- | openstackclient/tests/volume/v1/test_qos_specs.py | 7 |
2 files changed, 10 insertions, 0 deletions
diff --git a/openstackclient/tests/volume/v1/fakes.py b/openstackclient/tests/volume/v1/fakes.py index c6b4f0b8..42673efa 100644 --- a/openstackclient/tests/volume/v1/fakes.py +++ b/openstackclient/tests/volume/v1/fakes.py @@ -130,11 +130,13 @@ QOS_WITH_ASSOCIATIONS = { class FakeImagev1Client(object): + def __init__(self, **kwargs): self.images = mock.Mock() class FakeVolumev1Client(object): + def __init__(self, **kwargs): self.volumes = mock.Mock() self.volumes.resource_class = fakes.FakeResource(None, {}) @@ -151,6 +153,7 @@ class FakeVolumev1Client(object): class TestVolumev1(utils.TestCommand): + def setUp(self): super(TestVolumev1, self).setUp() diff --git a/openstackclient/tests/volume/v1/test_qos_specs.py b/openstackclient/tests/volume/v1/test_qos_specs.py index 7ecc8ee8..1a6c0fa4 100644 --- a/openstackclient/tests/volume/v1/test_qos_specs.py +++ b/openstackclient/tests/volume/v1/test_qos_specs.py @@ -34,6 +34,7 @@ class TestQos(volume_fakes.TestVolumev1): class TestQosAssociate(TestQos): + def setUp(self): super(TestQosAssociate, self).setUp() @@ -183,6 +184,7 @@ class TestQosCreate(TestQos): class TestQosDelete(TestQos): + def setUp(self): super(TestQosDelete, self).setUp() @@ -223,6 +225,7 @@ class TestQosDelete(TestQos): class TestQosDisassociate(TestQos): + def setUp(self): super(TestQosDisassociate, self).setUp() @@ -277,6 +280,7 @@ class TestQosDisassociate(TestQos): class TestQosList(TestQos): + def setUp(self): super(TestQosList, self).setUp() @@ -323,6 +327,7 @@ class TestQosList(TestQos): class TestQosSet(TestQos): + def setUp(self): super(TestQosSet, self).setUp() @@ -354,6 +359,7 @@ class TestQosSet(TestQos): class TestQosShow(TestQos): + def setUp(self): super(TestQosShow, self).setUp() @@ -405,6 +411,7 @@ class TestQosShow(TestQos): class TestQosUnset(TestQos): + def setUp(self): super(TestQosUnset, self).setUp() |
