Repository: cloudstack Updated Branches: refs/heads/master 7f6ea4bbe -> 332191b1b
CLOUDSTACK-7013: Fixing test script issue in test_add_remove_network.py Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/332191b1 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/332191b1 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/332191b1 Branch: refs/heads/master Commit: 332191b1bf2935bcad4c05a9fd61d0ebc30f035b Parents: 7f6ea4b Author: Ashutosh K <[email protected]> Authored: Wed Jul 16 23:30:43 2014 -0400 Committer: Girish Shilamkar <[email protected]> Committed: Wed Jul 16 23:59:33 2014 -0400 ---------------------------------------------------------------------- test/integration/component/test_add_remove_network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/332191b1/test/integration/component/test_add_remove_network.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_add_remove_network.py b/test/integration/component/test_add_remove_network.py index dbba59b..2bd6ec2 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)
