diff options
| author | Brian Waldon <brian.waldon@rackspace.com> | 2011-06-17 13:15:49 -0400 |
|---|---|---|
| committer | Brian Waldon <brian.waldon@rackspace.com> | 2011-06-17 13:15:49 -0400 |
| commit | 5752ff1a2e9941e8e70bdc4fac54dff414d4a180 (patch) | |
| tree | 95794284e6ab6791642ffc8e8c90d3ad78b278d0 | |
| parent | cbaf1a68c606bc77ac7a9d1ab082ce3e317fcf47 (diff) | |
| download | nova-5752ff1a2e9941e8e70bdc4fac54dff414d4a180.tar.gz nova-5752ff1a2e9941e8e70bdc4fac54dff414d4a180.tar.xz nova-5752ff1a2e9941e8e70bdc4fac54dff414d4a180.zip | |
fixing test case
| -rw-r--r-- | nova/tests/test_cloud.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/tests/test_cloud.py b/nova/tests/test_cloud.py index 094fd394e..8ba2164e7 100644 --- a/nova/tests/test_cloud.py +++ b/nova/tests/test_cloud.py @@ -515,7 +515,7 @@ class CloudTestCase(test.TestCase): return {'id': 1, 'properties': {'kernel_id': 1, 'ramdisk_id': 1, 'type': 'machine'}, 'status': 'active'} - self.stubs.Set(local.LocalImageService, 'show', fake_show_stat_active) + self.stubs.Set(fake._FakeImageService, 'show', fake_show_stat_active) result = run_instances(self.context, **kwargs) self.assertEqual(len(result['instancesSet']), 1) |
