From ddb6945e8fbb8a00d5b67a6a6b8a069b7642022d Mon Sep 17 00:00:00 2001 From: Brian Waldon Date: Fri, 23 Sep 2011 16:39:21 -0400 Subject: Fixing bug 857712 Change-Id: I495363b44d9da96d66f85c2a621393329830aeb3 --- nova/tests/test_compute.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'nova/tests') diff --git a/nova/tests/test_compute.py b/nova/tests/test_compute.py index 2af0a6012..86ffc18a6 100644 --- a/nova/tests/test_compute.py +++ b/nova/tests/test_compute.py @@ -76,7 +76,8 @@ class ComputeTestCase(test.TestCase): test_notifier.NOTIFICATIONS = [] def fake_show(meh, context, id): - return {'id': 1, 'properties': {'kernel_id': 1, 'ramdisk_id': 1}} + return {'id': 1, 'min_disk': None, 'min_ram': None, + 'properties': {'kernel_id': 1, 'ramdisk_id': 1}} self.stubs.Set(fake_image._FakeImageService, 'show', fake_show) -- cgit