summaryrefslogtreecommitdiffstats
path: root/functest/tests/unit/openstack/vping
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-07-31 12:25:40 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2018-08-01 10:17:02 +0200
commita4bbcd895a0fbf29cb7c2dc396fefb4229573225 (patch)
tree9e7a1402f3a09644fa4d51ead35145c84088fc43 /functest/tests/unit/openstack/vping
parentfb1fafba4fa172fffe92d33ed71adaeb866b5c05 (diff)
Print stderr in logs when calling cmd over ssh
Change-Id: I152ac898661a0e99a6232df86689c70c468ceaa5 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> (cherry picked from commit b66827d753e09c29cd6f541119dc0ec4c6344511)
Diffstat (limited to 'functest/tests/unit/openstack/vping')
-rw-r--r--functest/tests/unit/openstack/vping/test_vping_ssh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/tests/unit/openstack/vping/test_vping_ssh.py b/functest/tests/unit/openstack/vping/test_vping_ssh.py
index 3595638ec..05482ed6b 100644
--- a/functest/tests/unit/openstack/vping/test_vping_ssh.py
+++ b/functest/tests/unit/openstack/vping/test_vping_ssh.py
@@ -75,7 +75,7 @@ class VpingSSHTesting(unittest.TestCase):
self.vping.ssh = mock.Mock()
stdout = mock.Mock()
stdout.channel.recv_exit_status.return_value = ret
- self.vping.ssh.exec_command.return_value = (None, stdout, None)
+ self.vping.ssh.exec_command.return_value = (None, stdout, mock.Mock())
self.assertEqual(self.vping.execute(), ret)
self.vping.ssh.exec_command.assert_called_once_with(
'ping -c 1 {}'.format(self.vping.vm2.private_v4))