CLOUDSTACK-4447: Fix router tests by listing Routers for that account of type 'Isolated'.
Signed-off-by: Prasanna Santhanam <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/db673b2b Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/db673b2b Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/db673b2b Branch: refs/heads/4.2 Commit: db673b2b9b40ca958ae930af3ec3d6e9085272ca Parents: 8762a0d Author: SrikanteswaraRao Talluri <[email protected]> Authored: Thu Aug 22 15:59:14 2013 +0530 Committer: Prasanna Santhanam <[email protected]> Committed: Fri Aug 23 09:42:37 2013 +0530 ---------------------------------------------------------------------- test/integration/component/test_routers.py | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/db673b2b/test/integration/component/test_routers.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_routers.py b/test/integration/component/test_routers.py index 888302f..a724a3f 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),
