From 6b66fe92ca89633ec64397cedb0d1572d0089c93 Mon Sep 17 00:00:00 2001 From: Ashutosh K Date: Wed, 16 Jul 2014 23:30:43 -0400 Subject: [PATCH] CLOUDSTACK-7013: Fixing test script issue in test_add_remove_network.py (cherry picked from commit f99a96f38a1f2433cb01bd7af25890789716e070) --- test/integration/component/test_add_remove_network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/component/test_add_remove_network.py b/test/integration/component/test_add_remove_network.py index dbba59bef28..2bd6ec2d0cd 100644 --- a/test/integration/component/test_add_remove_network.py +++ b/test/integration/component/test_add_remove_network.py @@ -1391,7 +1391,7 @@ class TestFailureScenariosRemoveNicFromVM(cloudstackTestCase): cls._cleanup = [] cls.account = Account.create(cls.api_client,cls.services["account"],domainid = cls.domain.id) - cls.append(cls.account) + cls._cleanup.append(cls.account) cls.service_offering = ServiceOffering.create(cls.api_client,cls.services["service_offering"]) cls._cleanup.append(cls.service_offering)