Update obsolete way of initialize tempest client manager

Tempest now don't accept TestResource object, but only Credentials
object to initialize tempest client manager [1].

[1] https://review.openstack.org/#/c/327579/

Change-Id: I5a7c1697cea74bf75c35dc87e22267444eb92616
Closes-Bug: #1591865
(cherry picked from commit c4e6eaf9e3)
This commit is contained in:
Lin Yang 2016-06-13 16:03:53 +08:00 committed by Kirill Zaitsev
parent bbe7232e39
commit 23504c27c5
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class BaseApplicationCatalogTest(test.BaseTestCase):
creds = cls.dynamic_cred.get_credentials(type_of_creds)
cls.dynamic_cred.type_of_creds = type_of_creds
return creds
return creds.credentials
@classmethod
def verify_nonempty(cls, *args):