aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests/vnf/router/test_controller
diff options
context:
space:
mode:
authorroot <shuya.nakama@okinawaopenlabs.org>2017-10-10 11:08:40 +0000
committerShuyaNakama <shuya.nakama@okinawaopenlabs.org>2017-10-11 08:19:50 +0000
commit3fa62219bb5a9e928fe94d95314c7c00d5f06e66 (patch)
tree6c1d075148625934bbad9e371a4b992d040dc506 /functest/opnfv_tests/vnf/router/test_controller
parenta6e9a6fa2da17f84de91d2d47cb8ccb7e66a8836 (diff)
Fix fail of vRouter on Orange POD
1. Functest docker container environment has no attribute 'OS_REGION_NAME' 2. vRouter was get the 'OS_REGION_NAME' but not used it. 3. Deleting use 'OS_REGION_NAME' part of vRouter. 4. Utility lib of vRouter use Nova client. 5. Modifying Nova client authentication step for auth api v3. 6. Doing test of modified vRouter on Orange POD. Change-Id: I062549e5ca48fb4825b53448a4e2ffc8c1f8ec40 Signed-off-by: root <shuya.nakama@okinawaopenlabs.org>
Diffstat (limited to 'functest/opnfv_tests/vnf/router/test_controller')
-rw-r--r--functest/opnfv_tests/vnf/router/test_controller/function_test_exec.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/functest/opnfv_tests/vnf/router/test_controller/function_test_exec.py b/functest/opnfv_tests/vnf/router/test_controller/function_test_exec.py
index 236447e0c..9303aecae 100644
--- a/functest/opnfv_tests/vnf/router/test_controller/function_test_exec.py
+++ b/functest/opnfv_tests/vnf/router/test_controller/function_test_exec.py
@@ -40,8 +40,7 @@ class FunctionTestExec(object):
self.util.set_credentials(credentials["username"],
credentials["password"],
credentials["auth_url"],
- credentials["tenant_name"],
- credentials["region_name"])
+ credentials["tenant_name"])
with open(self.util.test_env_config_yaml) as file_fd:
test_env_config_yaml = yaml.safe_load(file_fd)