Merge "Fix race condition in tempest test"
diff --git a/manila_tempest_tests/tests/api/base.py b/manila_tempest_tests/tests/api/base.py
index 79c8673..73fcf09 100644
--- a/manila_tempest_tests/tests/api/base.py
+++ b/manila_tempest_tests/tests/api/base.py
@@ -261,9 +261,9 @@
@classmethod
def resource_cleanup(cls):
- super(BaseSharesTest, cls).resource_cleanup()
cls.clear_resources(cls.class_resources)
cls.clear_isolated_creds(cls.class_isolated_creds)
+ super(BaseSharesTest, cls).resource_cleanup()
@classmethod
@network_synchronized