Skip to content
Snippets Groups Projects
Commit c0d25551 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

TMSS-272: fixed test

parent b8c5d116
No related branches found
No related tags found
1 merge request!213Resolve TMSS-272
......@@ -71,15 +71,24 @@ class TMSSRESTTestDataCreator():
model_name,
template_test_data['name'],
template_test_data['version'])
else:
updated_test_data['schema'].pop('$id','')
if 'name' in template_test_data:
updated_test_data['schema']['title'] = template_test_data['name']
else:
updated_test_data['schema'].pop('title','')
if 'description' in template_test_data:
updated_test_data['schema']['description'] = template_test_data['description']
else:
updated_test_data['schema'].pop('description','')
if 'version' in template_test_data:
updated_test_data['schema']['version'] = template_test_data['version']
else:
updated_test_data['schema'].pop('version','')
return updated_test_data
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment