Merge "Fixed issues in invalid JSON file"

This commit is contained in:
Jenkins 2016-03-09 14:49:38 +00:00 committed by Gerrit Code Review
commit cbd849bea5

View File

@ -1,32 +1,32 @@
{ {
'files': {}, "files": {},
'status': 'COMPLETE', "status": "COMPLETE",
'name': 'my_stack', "name": "my_stack",
'tags': None, "tags": null,
'stack_user_project_id': '123456', "stack_user_project_id": "123456",
'environment': {}, "environment": {},
'template': { "template": {
'heat_template_version': '2016-04-08', "heat_template_version": "2016-04-08",
'resources': { "resources": {
'thing': { "thing": {
'type': 'OS::Heat::TestResource' "type": "OS::Heat::TestResource"
} }
} }
}, },
'action': 'CREATE', "action": "CREATE",
'project_id': '56789', "project_id": "56789",
'id': '2468', "id": "2468",
'resources': { "resources": {
'thing': { "thing": {
'status': 'COMPLETE', "status": "COMPLETE",
'name': 'thing', "name": "thing",
'resource_data': { "resource_data": {
'value': 'test_string', "value": "test_string"
}, },
'resource_id': 'my_stack-thing-1234', "resource_id": "my_stack-thing-1234",
'action': 'CREATE', "action": "CREATE",
'type': 'OS::Heat::TestResource', "type": "OS::Heat::TestResource",
'metadata': {} "metadata": {}
} }
} }
} }