From a38bb389b2026d9d6f71daf2c2ce2759264ddd30 Mon Sep 17 00:00:00 2001 From: Gaurav Aradhye Date: Wed, 13 Aug 2014 13:17:42 +0530 Subject: [PATCH] CLOUDSTACK-7331: Fixed issue in test_persistent_networks.py --- test/integration/component/test_persistent_networks.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/integration/component/test_persistent_networks.py b/test/integration/component/test_persistent_networks.py index 24eb71df5c4..73646859d4b 100644 --- a/test/integration/component/test_persistent_networks.py +++ b/test/integration/component/test_persistent_networks.py @@ -1816,6 +1816,8 @@ class TestVPCNetworkOperations(cloudstackTestCase): self.fail(exceptionMessage) elif value == "delete": + persistent_network_1.delete(self.apiclient) + persistent_network_2.delete(self.apiclient) vpc.delete(self.apiclient) vpcs = VPC.list(self.apiclient, id=vpc.id) self.assertEqual(validateList(vpcs)[0], FAIL, "vpc list should be empty, list is %s" % vpcs)