diff options
| author | John Tran <jtran@attinteractive.com> | 2011-05-24 08:59:02 -0700 |
|---|---|---|
| committer | John Tran <jtran@attinteractive.com> | 2011-05-24 08:59:02 -0700 |
| commit | 8e7c3121fab4b5a87c2efe865f3c06b1bd267cbc (patch) | |
| tree | 8bf04eada2089efbda632fc1177d04668b8fecef /nova | |
| parent | 7a521f49f6daf0a0a37a9ef98ff1ea8813f04a6f (diff) | |
added imageid string to exception, per peer review
Diffstat (limited to 'nova')
| -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 f3887b07b..e37aca4d6 100644 --- a/nova/tests/test_cloud.py +++ b/nova/tests/test_cloud.py @@ -226,7 +226,7 @@ class CloudTestCase(test.TestCase): 'type': 'machine'}}] def fake_show_none(meh, context, id): - raise exception.ImageNotFound + raise exception.ImageNotFound('bad_image_id') self.stubs.Set(local.LocalImageService, 'detail', fake_detail) # list all |
