diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2017-09-25 06:31:51 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-09-25 06:31:51 +0000 |
commit | 95705a54f1ab956801926302f7c7fbc088251eb7 (patch) | |
tree | 33c199cbe60f96a90accc3b6856842e7de325767 /functest/opnfv_tests/vnf/router/cloudify_vrouter.py | |
parent | cf30a201a275247c078fabbeb25dada670e620d9 (diff) | |
parent | 233a9bf775c1e9fe66e588ec45266c15bdb142b1 (diff) |
Merge "Fix creds still used by vrouter"
Diffstat (limited to 'functest/opnfv_tests/vnf/router/cloudify_vrouter.py')
-rw-r--r-- | functest/opnfv_tests/vnf/router/cloudify_vrouter.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/functest/opnfv_tests/vnf/router/cloudify_vrouter.py b/functest/opnfv_tests/vnf/router/cloudify_vrouter.py index edbdb495..86362368 100644 --- a/functest/opnfv_tests/vnf/router/cloudify_vrouter.py +++ b/functest/opnfv_tests/vnf/router/cloudify_vrouter.py @@ -365,10 +365,10 @@ class CloudifyVrouter(vrouter_base.VrouterOnBoardingBase): def test_vnf(self): cfy_client = self.orchestrator['object'] - credentials = {"username": self.creds["username"], - "password": self.creds["password"], - "auth_url": self.creds["auth_url"], - "tenant_name": self.creds["tenant"], + credentials = {"username": self.snaps_creds.username, + "password": self.snaps_creds.password, + "auth_url": self.snaps_creds.auth_url, + "tenant_name": self.snaps_creds.project_name, "region_name": os.environ['OS_REGION_NAME']} self.util_info = {"credentials": credentials, |