diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-11-20 06:37:25 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-11-20 06:37:25 +0000 |
| commit | d45187a0c163187649e29931d21c4607379d1e73 (patch) | |
| tree | a693cd9d92735a2e0ec750c79563978a95b0bca5 /openstackclient/tests/image | |
| parent | b70b1d04e447bb3748fcfd8cf25794fb8ea64b65 (diff) | |
| parent | 200ed62054847336235288c7785424be416bed06 (diff) | |
| download | python-openstackclient-d45187a0c163187649e29931d21c4607379d1e73.tar.gz | |
Merge "Add server image create command"
Diffstat (limited to 'openstackclient/tests/image')
| -rw-r--r-- | openstackclient/tests/image/v2/fakes.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/openstackclient/tests/image/v2/fakes.py b/openstackclient/tests/image/v2/fakes.py index df6b8072..96255cd4 100644 --- a/openstackclient/tests/image/v2/fakes.py +++ b/openstackclient/tests/image/v2/fakes.py @@ -21,10 +21,13 @@ from openstackclient.tests import utils image_id = 'im1' image_name = 'graven' +image_owner = 'baal' IMAGE = { 'id': image_id, - 'name': image_name + 'name': image_name, + 'is_public': False, + 'owner': image_owner, } |
