Removing an unnecessary 'BaseSharesAltTest' class
I don't see the need for a base class only for alt user.
We have already 'BaseSharesTest' class that initializes
'primary' user with the same role as 'alt' user.
If 'alt' user is necessary it can be initialzed at the test
class level.
Change-Id: Ie980a130c1996e0e97de25218fedd509cead4afb
diff --git a/manila_tempest_tests/tests/api/base.py b/manila_tempest_tests/tests/api/base.py
index 0ee3611..2310591 100755
--- a/manila_tempest_tests/tests/api/base.py
+++ b/manila_tempest_tests/tests/api/base.py
@@ -1110,11 +1110,6 @@
return rule
-class BaseSharesAltTest(BaseSharesTest):
- """Base test case class for all Shares Alt API tests."""
- credentials = ('alt', )
-
-
class BaseSharesAdminTest(BaseSharesTest):
"""Base test case class for all Shares Admin API tests."""
credentials = ('admin', )