commit | 58febcc6eb34ac7318b928037cc90576bf24fcbc | [log] [tgz] |
---|---|---|
author | Zhi Kun Liu <zhikunli@cn.ibm.com> | Tue Sep 03 13:58:45 2013 +0800 |
committer | Zhi Kun Liu <zhikunli@cn.ibm.com> | Tue Sep 03 15:03:00 2013 +0800 |
tree | cae979d8ee1a7a6e679eabfd9018f4e7140a8f74 | |
parent | a87b64d1242e2bd8aae3c659be234961b0d4ef27 [diff] |
fix test_flavors_extra_specs failure tempest.api.compute.admin.test_flavors_extra_specs.FlavorsExtraSpecsTestXML failed due to test_flavor2 already exists Fixing Bug 1220034 Change-Id: I259f4202978ac20d341349d1d227c6ef14c31d9b
diff --git a/tempest/api/compute/admin/test_flavors_extra_specs.py b/tempest/api/compute/admin/test_flavors_extra_specs.py index 7b79a12..f2f82b5 100644 --- a/tempest/api/compute/admin/test_flavors_extra_specs.py +++ b/tempest/api/compute/admin/test_flavors_extra_specs.py
@@ -58,6 +58,7 @@ @classmethod def tearDownClass(cls): resp, body = cls.client.delete_flavor(cls.flavor['id']) + cls.client.wait_for_resource_deletion(cls.flavor['id']) super(FlavorsExtraSpecsTestJSON, cls).tearDownClass() @attr(type='gate')