From ee3dc409bc3633f8477bce8998add9dadaf6543d Mon Sep 17 00:00:00 2001 From: Assaf Muller Date: Wed, 9 Mar 2016 19:59:47 -0500 Subject: [PATCH] Remove unused Tempest AdminManager Change-Id: If1c5983bdad63121cb7a8ab1d97b16f389ebfe09 Related-bug: #1555356 --- neutron/tests/api/clients.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/neutron/tests/api/clients.py b/neutron/tests/api/clients.py index c1cb2c6bb62..d9879b042e0 100644 --- a/neutron/tests/api/clients.py +++ b/neutron/tests/api/clients.py @@ -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)