diff --git a/functional/tests/identity/v2/common.py b/functional/tests/identity/v2/common.py
index 9d6a7bb5b0..ca061a4dac 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 a7cddfc2c9..c988d33638 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')