diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2019-01-27 10:45:41 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-01-27 10:45:41 +0000 |
commit | 62c43ae719bd65d5ce4ea88a8bb0bc7dca0faa59 (patch) | |
tree | c7a08671dbeab7a30d3ae495bc83f03e55a3e357 | |
parent | 924403046c3604663f861978503a097f472821ae (diff) | |
parent | 56db6ba1f812ca6d599f8626471fac6f40cf3bf3 (diff) |
Merge "Stop using urljoin when adding v3" into stable/hunter
-rw-r--r-- | functest/opnfv_tests/openstack/vmtp/vmtp.py | 4 | ||||
-rw-r--r-- | functest/opnfv_tests/vnf/epc/juju_epc.py | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/functest/opnfv_tests/openstack/vmtp/vmtp.py b/functest/opnfv_tests/openstack/vmtp/vmtp.py index 6bad9aec2..3462ec063 100644 --- a/functest/opnfv_tests/openstack/vmtp/vmtp.py +++ b/functest/opnfv_tests/openstack/vmtp/vmtp.py @@ -29,7 +29,6 @@ import tempfile import time import yaml -import six from xtesting.core import testcase from functest.core import singlevm @@ -138,8 +137,7 @@ class Vmtp(singlevm.VmReady2): OS_PROJECT_ID=self.project.project.id, OS_PASSWORD=self.project.password) if not new_env["OS_AUTH_URL"].endswith(('v3', 'v3/')): - new_env["OS_AUTH_URL"] = six.moves.urllib.parse.urljoin( - new_env["OS_AUTH_URL"], 'v3') + new_env["OS_AUTH_URL"] = "{}/v3".format(new_env["OS_AUTH_URL"]) try: del new_env['OS_TENANT_NAME'] del new_env['OS_TENANT_ID'] diff --git a/functest/opnfv_tests/vnf/epc/juju_epc.py b/functest/opnfv_tests/vnf/epc/juju_epc.py index ad4591fd6..ea09084df 100644 --- a/functest/opnfv_tests/vnf/epc/juju_epc.py +++ b/functest/opnfv_tests/vnf/epc/juju_epc.py @@ -19,7 +19,6 @@ import sys from copy import deepcopy import pkg_resources -import six from functest.core import singlevm from functest.utils import config @@ -140,8 +139,7 @@ class JujuEpc(singlevm.VmReady2): try: self.public_auth_url = self.get_public_auth_url(self.orig_cloud) if not self.public_auth_url.endswith(('v3', 'v3/')): - self.public_auth_url = six.moves.urllib.parse.urljoin( - self.public_auth_url, 'v3') + self.public_auth_url = "{}/v3".format(self.public_auth_url) except Exception: # pylint: disable=broad-except self.public_auth_url = None self.sec = None |