diff --git a/test/integration/component/test_vpc_network.py b/test/integration/component/test_vpc_network.py index 4e6c02c1045..f65e89f4c87 100644 --- a/test/integration/component/test_vpc_network.py +++ b/test/integration/component/test_vpc_network.py @@ -2340,8 +2340,7 @@ class TestVPCNetworkGc(cloudstackTestCase): @attr(tags=["advanced", "intervlan"]) def test_01_wait_network_gc(self): - """ Test stop all the Vms that are part of the a Network - (Wait for network GC).Start 1 Vm from the network. + """ Test network gc after shutdown of vms in the network """ # Validate the following @@ -2358,7 +2357,7 @@ class TestVPCNetworkGc(cloudstackTestCase): self.debug("Waiting for network garbage collection thread to run") # Wait for the network garbage collection thread to run wait_for_cleanup(self.apiclient, - ["network.gc.interval", "network.gc.wait"]) + ["network.gc.interval", "network.gc.wait"]*2) self.debug("Check if the VPC router is in stopped state?") routers = Router.list( self.apiclient, @@ -2376,13 +2375,13 @@ class TestVPCNetworkGc(cloudstackTestCase): self.assertEqual( router.state, "Stopped", - "Router state should be stopped after netwrok.gc.interval" + "Router state should be stopped after network gc" ) return @attr(tags=["advanced", "intervlan"]) def test_02_start_vm_network_gc(self): - """ Test network rules after starting an instance in VPC + """ Test network rules after starting a VpcVr that was shutdown after network.gc """ # Validate the following