From f9a66655e353fa3ff25d4231cf6cd60f7e9500e6 Mon Sep 17 00:00:00 2001 From: Gaurav Aradhye Date: Tue, 12 Aug 2014 18:41:47 +0530 Subject: [PATCH] CLOUDSTACK-7321: Resolved cleanup issue in test_network.py Signed-off-by: Santhosh Edukulla --- test/integration/smoke/test_network.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/integration/smoke/test_network.py b/test/integration/smoke/test_network.py index 08ec0d3fbcc..cca1803d3e6 100644 --- a/test/integration/smoke/test_network.py +++ b/test/integration/smoke/test_network.py @@ -609,10 +609,9 @@ class TestRebootRouter(cloudstackTestCase): self.services["natrule"], ipaddressid=self.public_ip.ipaddress.id ) - self.cleanup = [ - self.vm_1, + self.cleanup = [self.nat_rule, lb_rule, - self.nat_rule, + self.vm_1, self.service_offering, self.account, ]