summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Hooker <matt@cloudscaling.com>2011-08-03 14:47:35 -0400
committerMatthew Hooker <matt@cloudscaling.com>2011-08-03 14:47:35 -0400
commit933587d821797037bb765e9d0bd5ea063c07785b (patch)
treeec05f39309944f738e4edbfabb783b0318d62611
parenta049e682b54525d2814f20b08ca64320040675b8 (diff)
fix duplicate function name
-rw-r--r--nova/tests/test_instance_types_extra_specs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/tests/test_instance_types_extra_specs.py b/nova/tests/test_instance_types_extra_specs.py
index 393ed1e36..205601277 100644
--- a/nova/tests/test_instance_types_extra_specs.py
+++ b/nova/tests/test_instance_types_extra_specs.py
@@ -136,7 +136,7 @@ class InstanceTypeExtraSpecsTestCase(test.TestCase):
"m1.small")
self.assertEquals(instance_type['extra_specs'], {})
- def test_instance_type_get_with_extra_specs(self):
+ def test_instance_type_get_by_flavor_id_with_extra_specs(self):
instance_type = db.api.instance_type_get_by_flavor_id(
context.get_admin_context(),
105)