diff options
author | 2018-05-30 09:32:00 +0200 | |
---|---|---|
committer | 2018-05-30 09:36:09 +0200 | |
commit | 84c775bc17ca5506929a81c3c0963e67e084aab5 (patch) | |
tree | 08ca7a1900c6ab7defeff047c2f91b1e8b0cf969 | |
parent | d988594d88450d5bd579d503225ba6ec35492b9d (diff) |
Fix _do_execute() return code in vping_ssh
Change-Id: I781e51bb56f6cdac8b347e7fd85e70c07eb69e23
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 30e4106b56608595885e1b46ad4b668866ab9426)
-rw-r--r-- | functest/opnfv_tests/openstack/vping/vping_ssh.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/opnfv_tests/openstack/vping/vping_ssh.py b/functest/opnfv_tests/openstack/vping/vping_ssh.py index dd864e084..1dfca89a3 100644 --- a/functest/opnfv_tests/openstack/vping/vping_ssh.py +++ b/functest/opnfv_tests/openstack/vping/vping_ssh.py @@ -114,7 +114,7 @@ class VPingSSH(vping_base.VPingBase): time.sleep(10) else: self.logger.error("cannot connect to %s", self.vm2.public_v4) - return False + return testcase.TestCase.EX_RUN_ERROR self.logger.debug("ssh: %s", self.ssh) (_, stdout, _) = self.ssh.exec_command( |