diff --git a/nova/tests/test_instance_types.py b/nova/tests/test_instance_types.py index e20845f1..d8a91573 100644 --- a/nova/tests/test_instance_types.py +++ b/nova/tests/test_instance_types.py @@ -31,8 +31,8 @@ class InstanceTypeTestCase(test.TestCase): def _generate_name(self): """return a name not in the DB.""" nonexistent_flavor = str(int(time.time())) - flavors = flavors.get_all_types() - while nonexistent_flavor in flavors: + all_flavors = flavors.get_all_types() + while nonexistent_flavor in all_flavors: nonexistent_flavor += "z" else: return nonexistent_flavor