aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge Paraskevopoulos <geopar@intracom-telecom.com>2017-03-03 13:28:22 +0200
committerGeorge Paraskevopoulos <geopar@intracom-telecom.com>2017-03-03 13:29:05 +0200
commita7cd1d5cf644578edb17c5523e3c50bb197e7893 (patch)
treed02cc8289e67ae429514542dd3cf0ffb2b1bdf15
parent69a626a3f767aadb6405646c911b8f012a5e7e40 (diff)
Fix path where we get tackerc from controller
SFTP does not expand ~ to $HOME dir Change-Id: I2d710c577986152a5cc703ca3668ae7b7767a07e Signed-off-by: George Paraskevopoulos <geopar@intracom-telecom.com>
-rw-r--r--sfc/tests/functest/run_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfc/tests/functest/run_tests.py b/sfc/tests/functest/run_tests.py
index 3c97a711..762e6b3d 100644
--- a/sfc/tests/functest/run_tests.py
+++ b/sfc/tests/functest/run_tests.py
@@ -47,7 +47,7 @@ def fetch_tackerc_file(controller_node):
rc_file = os.path.join(COMMON_CONFIG.sfc_test_dir, 'tackerc')
if not os.path.exists(rc_file):
logger.info("tackerc file not found, fetching it from controller")
- controller_node.get_file("~/tackerc", rc_file)
+ controller_node.get_file("/root/tackerc", rc_file)
else:
logger.info("found tackerc file")
return rc_file