summaryrefslogtreecommitdiff
path: root/openstackclient/tests/functional/identity/v2/test_endpoint.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/tests/functional/identity/v2/test_endpoint.py')
-rw-r--r--openstackclient/tests/functional/identity/v2/test_endpoint.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/openstackclient/tests/functional/identity/v2/test_endpoint.py b/openstackclient/tests/functional/identity/v2/test_endpoint.py
index 9df5ca8a..bafbfdae 100644
--- a/openstackclient/tests/functional/identity/v2/test_endpoint.py
+++ b/openstackclient/tests/functional/identity/v2/test_endpoint.py
@@ -14,21 +14,20 @@ from openstackclient.tests.functional.identity.v2 import common
class EndpointTests(common.IdentityTests):
-
def test_endpoint_create(self):
self._create_dummy_endpoint()
def test_endpoint_delete(self):
endpoint_id = self._create_dummy_endpoint(add_clean_up=False)
- raw_output = self.openstack(
- 'endpoint delete %s' % endpoint_id)
+ raw_output = self.openstack('endpoint delete %s' % endpoint_id)
self.assertEqual(0, len(raw_output))
def test_endpoint_multi_delete(self):
endpoint_id_1 = self._create_dummy_endpoint(add_clean_up=False)
endpoint_id_2 = self._create_dummy_endpoint(add_clean_up=False)
raw_output = self.openstack(
- 'endpoint delete ' + endpoint_id_1 + ' ' + endpoint_id_2)
+ 'endpoint delete ' + endpoint_id_1 + ' ' + endpoint_id_2
+ )
self.assertEqual(0, len(raw_output))
def test_endpoint_list(self):