summaryrefslogtreecommitdiff
path: root/keystone_tempest_plugin
diff options
context:
space:
mode:
authorRodrigo Duarte <rduartes@redhat.com>2016-05-31 10:11:27 -0300
committerRodrigo Duarte <rduartes@redhat.com>2016-05-31 10:11:27 -0300
commitb4bfc541b070cad0742f05e6378663cf5e05dda9 (patch)
tree535321293217552a662f598a86de80992c831c66 /keystone_tempest_plugin
parentc90c525aacfb8a46677673d735a1dfec3f9e9c20 (diff)
downloadkeystone-b4bfc541b070cad0742f05e6378663cf5e05dda9.tar.gz
Fix credentials_factory method call
The method has changed from get_configured_credentials to get_configured_admin_credentials. This is one of the parts imported directly from tempest (not tempest.lib) so there is no "care" in keeping it stable. Change-Id: I0072157d0cf9ab87a5b939868ae4a1d0bbec294b
Diffstat (limited to 'keystone_tempest_plugin')
-rw-r--r--keystone_tempest_plugin/tests/api/identity/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone_tempest_plugin/tests/api/identity/base.py b/keystone_tempest_plugin/tests/api/identity/base.py
index ceefee0a0..8d0cd99b6 100644
--- a/keystone_tempest_plugin/tests/api/identity/base.py
+++ b/keystone_tempest_plugin/tests/api/identity/base.py
@@ -30,7 +30,7 @@ class BaseIdentityTest(test.BaseTestCase):
@classmethod
def setup_clients(cls):
super(BaseIdentityTest, cls).setup_clients()
- credentials = common_creds.get_configured_credentials(
+ credentials = common_creds.get_configured_admin_credentials(
cls.credential_type, identity_version=cls.identity_version)
cls.keystone_manager = clients.Manager(credentials=credentials)
cls.idps_client = cls.keystone_manager.identity_providers_client