summaryrefslogtreecommitdiff
path: root/openstackclient/tests/image/v2/fakes.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-11-18 03:47:30 +0000
committerGerrit Code Review <review@openstack.org>2014-11-18 03:47:30 +0000
commit3b1c308b11adebd4914d3947cb8f3ffb18dfba24 (patch)
tree67c888a80273bca6cb80af3771fc8763709091b6 /openstackclient/tests/image/v2/fakes.py
parentd827bdaaeda2e8b6ddfaec6959dadfb93bf3e171 (diff)
parent936722d59f4e28e4f6c578074eeb75152458d821 (diff)
downloadpython-openstackclient-3b1c308b11adebd4914d3947cb8f3ffb18dfba24.tar.gz
Merge "Add arg to 'server image create' tests"
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,
}