summaryrefslogtreecommitdiffstats
path: root/nova/tests
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-06-20 19:07:06 +0000
committerGerrit Code Review <review@openstack.org>2013-06-20 19:07:06 +0000
commite6fd33ebd2c632c9f713d8d098741ab313cf409a (patch)
tree11a84664e5935854319ff1476c0aa5cdca5724a6 /nova/tests
parentd73417234f7d51ff4259a1f4b81c5b792628d24d (diff)
parent6bbe906db0385bcd11e0532b8b180272feb76042 (diff)
Merge "Remove straggling use of all-kwarg object methods"
Diffstat (limited to 'nova/tests')
-rw-r--r--nova/tests/objects/test_instance.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/tests/objects/test_instance.py b/nova/tests/objects/test_instance.py
index a55c5d502..09ce70355 100644
--- a/nova/tests/objects/test_instance.py
+++ b/nova/tests/objects/test_instance.py
@@ -90,7 +90,7 @@ class _TestInstanceObject(object):
self.mox.StubOutWithMock(db, 'instance_get_by_uuid')
db.instance_get_by_uuid(ctxt, 'uuid', []).AndReturn(self.fake_instance)
self.mox.ReplayAll()
- inst = instance.Instance.get_by_uuid(ctxt, uuid='uuid')
+ inst = instance.Instance.get_by_uuid(ctxt, 'uuid')
# Make sure these weren't loaded
for attr in instance.INSTANCE_OPTIONAL_FIELDS:
attrname = base.get_attrname(attr)