diff options
Diffstat (limited to 'functest/opnfv_tests/vnf/ims')
-rw-r--r-- | functest/opnfv_tests/vnf/ims/orchestrator.py | 4 |
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 5f84df00..f3838f87 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) |