From 02d322189de30983ed63869040fe177f95a5a330 Mon Sep 17 00:00:00 2001 From: Gaurav Aradhye Date: Wed, 25 Mar 2015 11:01:58 +0530 Subject: [PATCH] CLOUDSTACK-8344: Fixed SSH failures in test_haproxy.py test suite This closes #130 Signed-off-by: SrikanteswaraRao Talluri --- test/integration/component/test_haproxy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/component/test_haproxy.py b/test/integration/component/test_haproxy.py index 6a64fc1d4f9..f6c675b1666 100644 --- a/test/integration/component/test_haproxy.py +++ b/test/integration/component/test_haproxy.py @@ -325,8 +325,8 @@ class TestHAProxyStickyness(cloudstackTestCase): ssh_1 = SshClient( ip_addr, 22, - self.services["configurableData"]["host"]["username"], - self.services["configurableData"]["host"]["password"] + self.virtual_machine.username, + self.virtual_machine.password ) hostnames.append(ssh_1.execute("hostname")[0]) self.debug(hostnames)