summaryrefslogtreecommitdiff
path: root/openstackclient/tests/image/v2/fakes.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/tests/image/v2/fakes.py')
-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 96255cd4..1b7edf08 100644
--- a/openstackclient/tests/image/v2/fakes.py
+++ b/openstackclient/tests/image/v2/fakes.py
@@ -22,12 +22,15 @@ from openstackclient.tests import utils
image_id = 'im1'
image_name = 'graven'
image_owner = 'baal'
+image_public = False
+image_protected = False
IMAGE = {
'id': image_id,
'name': image_name,
- 'is_public': False,
+ 'is_public': image_public,
'owner': image_owner,
+ 'protected': image_protected,
}