Repository: cloudstack Updated Branches: refs/heads/master 1df0453d2 -> f4133a7f7
CLOUDSTACK-8053: Fix loop termination - test_vpc_host_maintenance.py Signed-off-by: SrikanteswaraRao Talluri <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/ab580de3 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/ab580de3 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/ab580de3 Branch: refs/heads/master Commit: ab580de38d6517598571034cb5caa56ba5cdbdf1 Parents: a592b01 Author: Gaurav Aradhye <[email protected]> Authored: Tue Dec 9 16:45:04 2014 +0530 Committer: SrikanteswaraRao Talluri <[email protected]> Committed: Tue Dec 9 18:30:06 2014 +0530 ---------------------------------------------------------------------- test/integration/component/maint/test_vpc_host_maintenance.py | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/ab580de3/test/integration/component/maint/test_vpc_host_maintenance.py ---------------------------------------------------------------------- diff --git a/test/integration/component/maint/test_vpc_host_maintenance.py b/test/integration/component/maint/test_vpc_host_maintenance.py index 7027469..74d59e7 100644 --- a/test/integration/component/maint/test_vpc_host_maintenance.py +++ b/test/integration/component/maint/test_vpc_host_maintenance.py @@ -221,6 +221,7 @@ class TestVMLifeCycleHostmaintenance(cloudstackTestCase): cls.hosts = Host.list(cls.api_client, clusterid=cluster.id) if len(cls.hosts) >= 2: clusterWithSufficientHosts = cluster + break if clusterWithSufficientHosts is None: raise unittest.SkipTest("No Cluster with 2 hosts found")
