summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-06-24 13:18:31 +0000
committerGerrit Code Review <review@openstack.org>2016-06-24 13:18:31 +0000
commit08480739c7913c7af53907ed87348e3fdc5e9a00 (patch)
tree046fe48aa25801de195f376471c627335e19dc15
parent0c748579711b7d17f3bb28edf66c522839784e27 (diff)
parent60f3cfa6ef21b5aca9a4b71b3f13f25db46b16ee (diff)
downloadpython-openstackclient-08480739c7913c7af53907ed87348e3fdc5e9a00.tar.gz
Merge "Remove code forgotten in cb28fb55884a9be7cd70c37343181116cf000a42"
-rw-r--r--functional/tests/identity/v2/common.py3
-rw-r--r--functional/tests/identity/v3/common.py3
2 files changed, 0 insertions, 6 deletions
diff --git a/functional/tests/identity/v2/common.py b/functional/tests/identity/v2/common.py
index 9d6a7bb5..ca061a4d 100644
--- a/functional/tests/identity/v2/common.py
+++ b/functional/tests/identity/v2/common.py
@@ -61,9 +61,6 @@ class IdentityTests(test.TestCase):
def tearDownClass(cls):
cls.openstack('project delete %s' % cls.project_name)
- if hasattr(super(IdentityTests, cls), 'tearDownClass'):
- super(IdentityTests, cls).tearDownClass()
-
def _create_dummy_project(self, add_clean_up=True):
project_name = data_utils.rand_name('TestProject')
project_description = data_utils.rand_name('description')
diff --git a/functional/tests/identity/v3/common.py b/functional/tests/identity/v3/common.py
index a7cddfc2..c988d336 100644
--- a/functional/tests/identity/v3/common.py
+++ b/functional/tests/identity/v3/common.py
@@ -87,9 +87,6 @@ class IdentityTests(test.TestCase):
cls.openstack('domain set --disable %s' % cls.domain_name)
cls.openstack('domain delete %s' % cls.domain_name)
- if hasattr(super(IdentityTests, cls), 'tearDownClass'):
- super(IdentityTests, cls).tearDownClass()
-
def _create_dummy_user(self, add_clean_up=True):
username = data_utils.rand_name('TestUser')
password = data_utils.rand_name('password')