From d773eee39c1e8e3a0bdaebc6f24cbe718ce98567 Mon Sep 17 00:00:00 2001 From: Gaurav Aradhye Date: Thu, 11 Dec 2014 17:12:50 +0530 Subject: [PATCH] CLOUDSTACK:8018: Fix test_redundant_router.test_redundantVR_internals - The SSH to router was being done from wrong host Signed-off-by: SrikanteswaraRao Talluri --- test/integration/component/maint/test_redundant_router.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/test/integration/component/maint/test_redundant_router.py b/test/integration/component/maint/test_redundant_router.py index 099ae2c47dd..01d635b7e6c 100644 --- a/test/integration/component/maint/test_redundant_router.py +++ b/test/integration/component/maint/test_redundant_router.py @@ -720,8 +720,7 @@ class TestRVRInternals(cloudstackTestCase): hosts = Host.list( self.apiclient, - id=master_router.hostid, - listall=True + id=master_router.hostid ) self.assertEqual( isinstance(hosts, list), @@ -734,8 +733,7 @@ class TestRVRInternals(cloudstackTestCase): hosts = Host.list( self.apiclient, - id=backup_router.hostid, - listall=True + id=backup_router.hostid ) self.assertEqual( isinstance(hosts, list), @@ -796,7 +794,7 @@ class TestRVRInternals(cloudstackTestCase): ) else: result = get_process_status( - master_host.ipaddress, + backup_host.ipaddress, 22, self.testdata['configurableData']['host']["username"], self.testdata['configurableData']['host']["password"],