Remove unused Tempest AdminManager

Change-Id: If1c5983bdad63121cb7a8ab1d97b16f389ebfe09
Related-bug: #1555356
This commit is contained in:
Assaf Muller 2016-03-09 19:59:47 -05:00
parent d2b9a9afd0
commit ee3dc409bc
1 changed files with 0 additions and 15 deletions

View File

@ -13,7 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
from tempest.common import cred_provider
from tempest import manager
from tempest.services.identity.v2.json.tenants_client import \
TenantsClient
@ -72,17 +71,3 @@ class Manager(manager.Manager):
# Client uses admin endpoint type of Keystone API v2
self.tenants_client = TenantsClient(self.auth_provider,
**params_v2_admin)
class AdminManager(Manager):
"""
Manager object that uses the admin credentials for its
managed client objects
"""
def __init__(self, service=None):
super(AdminManager, self).__init__(
credentials=cred_provider.get_configured_credentials(
'identity_admin'),
service=service)