Repository: cloudstack Updated Branches: refs/heads/4.4-forward 1cc6317b5 -> f99a96f38
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/f99a96f3 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/f99a96f3 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/f99a96f3 Branch: refs/heads/4.4-forward Commit: f99a96f38a1f2433cb01bd7af25890789716e070 Parents: 1cc6317 Author: Ashutosh K <[email protected]> Authored: Wed Jul 16 23:30:43 2014 -0400 Committer: Girish Shilamkar <[email protected]> Committed: Wed Jul 16 23:57:13 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/f99a96f3/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)
