tempest: start using get_configured_admin_credentials

Tempest removed get_configured_credentials in [1].
This patch aims to update the way we get admin credentials in Tempest
client code.

[1] https://github.com/openstack/tempest/commit/bc0a7a6d8022c7240f5f1f80c0c93b43e9037ad4

Change-Id: Ic97c011f8beec8df4253949285794be21b10f7cf
This commit is contained in:
Emilien Macchi
2016-05-29 21:58:13 -04:00
parent fae3493ed1
commit b8f227e62e
+1 -1
View File
@@ -22,7 +22,7 @@ from ironic_tempest_plugin.services.baremetal.v1.json.baremetal_client import \
CONF = config.CONF
ADMIN_CREDS = common_creds.get_configured_credentials('identity_admin')
ADMIN_CREDS = common_creds.get_configured_admin_credentials()
class Manager(clients.Manager):