From c5165643f489c3e75f0ed9cb671125a53117d673 Mon Sep 17 00:00:00 2001 From: SrikanteswaraRao Talluri Date: Thu, 22 Aug 2013 15:59:14 +0530 Subject: [PATCH] CLOUDSTACK-4447: Fix router tests by listing Routers for that account of type 'Isolated'. Signed-off-by: Prasanna Santhanam (cherry picked from commit db673b2b9b40ca958ae930af3ec3d6e9085272ca) --- test/integration/component/test_routers.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/integration/component/test_routers.py b/test/integration/component/test_routers.py index 888302fa7c2..a724a3fc3b7 100644 --- a/test/integration/component/test_routers.py +++ b/test/integration/component/test_routers.py @@ -218,6 +218,7 @@ class TestRouterServices(cloudstackTestCase): self.apiclient, account=self.account.name, domainid=self.account.domainid, + type = 'Isolated' ) self.assertEqual( isinstance(networks, list), @@ -274,6 +275,7 @@ class TestRouterServices(cloudstackTestCase): self.apiclient, account=self.account.name, domainid=self.account.domainid, + type = 'Isolated' ) self.assertEqual( isinstance(networks, list), @@ -364,6 +366,7 @@ class TestRouterServices(cloudstackTestCase): self.apiclient, account=self.account.name, domainid=self.account.domainid, + type = 'Isolated' ) self.assertEqual( isinstance(networks, list),