summaryrefslogtreecommitdiff
path: root/openstackclient/tests/unit/image/v1/fakes.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/tests/unit/image/v1/fakes.py')
-rw-r--r--openstackclient/tests/unit/image/v1/fakes.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/openstackclient/tests/unit/image/v1/fakes.py b/openstackclient/tests/unit/image/v1/fakes.py
index 080356ee..4b6d278c 100644
--- a/openstackclient/tests/unit/image/v1/fakes.py
+++ b/openstackclient/tests/unit/image/v1/fakes.py
@@ -34,6 +34,7 @@ image_properties = {
}
image_properties_str = "Alpha='a', Beta='b', Gamma='g'"
image_data = 'line 1\nline 2\n'
+image_size = 0
IMAGE = {
'id': image_id,
@@ -46,6 +47,7 @@ IMAGE = {
'is_public': image_public,
'protected': image_protected,
'properties': image_properties,
+ 'size': image_size,
}
IMAGE_columns = tuple(sorted(IMAGE))