summaryrefslogtreecommitdiff
path: root/openstackclient/tests/image/v2
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/tests/image/v2')
-rw-r--r--openstackclient/tests/image/v2/fakes.py5
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,
}