aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests/vnf
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-12-02 08:30:47 +0100
committerMorgan Richomme <morgan.richomme@orange.com>2016-12-05 14:14:14 +0100
commitd13fac5935bb3fe573dc9a79e06b8cffde37712e (patch)
tree0333a6fd3380a1e85180591641a61597797ed8f7 /functest/opnfv_tests/vnf
parentdc733c31177b0ffdc4c30b9c4801b765909f1c50 (diff)
Fix Pep8 issues related to \
JIRA: FUNCTEST-630 Change-Id: I2b6d3bec67c6fe290fb2ad795a54a2dd2e3c7a0b Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'functest/opnfv_tests/vnf')
-rw-r--r--functest/opnfv_tests/vnf/ims/orchestrator.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/functest/opnfv_tests/vnf/ims/orchestrator.py b/functest/opnfv_tests/vnf/ims/orchestrator.py
index 5f84df006..f3838f871 100644
--- a/functest/opnfv_tests/vnf/ims/orchestrator.py
+++ b/functest/opnfv_tests/vnf/ims/orchestrator.py
@@ -138,8 +138,8 @@ class Orchestrator:
bp_name, dep_name):
self.logger.info("Downloading the {0} blueprint".format(
blueprint['file_name']))
- destination_folder = self.testcase_dir + \
- blueprint['destination_folder']
+ destination_folder = os.path.join(self.testcase_dir,
+ blueprint['destination_folder'])
download_result = self._download_blueprints(blueprint['url'],
blueprint['branch'],
destination_folder)