From: helenyao Date: Sat, 26 Nov 2016 02:21:53 +0000 (-0500) Subject: Bugfix: fix the wrong path for vping_ssh X-Git-Tag: danube.1.RC1~287 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=4c3ee8ed7c89f5aeb0042fab5982bd7f2b055c68;p=functest.git Bugfix: fix the wrong path for vping_ssh JIRA: FUNCTEST-624 Change-Id: Idbd04eb4c09a3bae29f12e43b019ad095ce2cf7b Signed-off-by: helenyao --- diff --git a/functest/opnfv_tests/openstack/vping/vping_ssh.py b/functest/opnfv_tests/openstack/vping/vping_ssh.py index 6fb35a7a1..513ad0ee6 100644 --- a/functest/opnfv_tests/openstack/vping/vping_ssh.py +++ b/functest/opnfv_tests/openstack/vping/vping_ssh.py @@ -120,7 +120,7 @@ class VPingSSH(vping_base.VPingBase): self.logger.info("Trying to transfer ping.sh to %s..." % floatip) scp = SCPClient(ssh.get_transport()) - ping_script = os.path.join(self.repo + "ping.sh") + ping_script = os.path.join(self.repo, "ping.sh") try: scp.put(ping_script, "~/") except: