From 12380835b5e8bb7a81f312059345d2980f9547b1 Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Mon, 19 Aug 2013 14:36:59 +0530 Subject: [PATCH] CLOUDSTACK-4394: remove cleanups for offerings offerings do not need to be cleaned up Signed-off-by: Prasanna Santhanam (cherry picked from commit b9c2471cfc5e051db4478783c6928f6e0c5a1f7a) --- test/integration/component/test_vpc_network.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/integration/component/test_vpc_network.py b/test/integration/component/test_vpc_network.py index f65e89f4c87..970a6254c85 100644 --- a/test/integration/component/test_vpc_network.py +++ b/test/integration/component/test_vpc_network.py @@ -2138,12 +2138,10 @@ class TestVPCNetworkGc(cloudstackTestCase): cls.api_client, cls.services["service_offering"] ) - cls._cleanup.append(cls.service_offering) cls.vpc_off = VpcOffering.create( cls.api_client, cls.services["vpc_offering"] ) - cls._cleanup.append(cls.vpc_off) cls.vpc_off.update(cls.api_client, state='Enabled') cls.account = Account.create( @@ -2169,7 +2167,6 @@ class TestVPCNetworkGc(cloudstackTestCase): cls.services["network_offering"], conservemode=False ) - cls._cleanup.append(cls.nw_off) # Enable Network offering cls.nw_off.update(cls.api_client, state='Enabled')