Skip to content
Snippets Groups Projects
Commit a6ee52de authored by Frédéric Dalleau's avatar Frédéric Dalleau :sun_with_face:
Browse files

Apply suggestion to atc_renderer/renderer.py

parent 88f525d9
No related branches found
No related tags found
No related merge requests found
...@@ -109,7 +109,7 @@ def get_template_values(testcase_data): ...@@ -109,7 +109,7 @@ def get_template_values(testcase_data):
if mv == 'expected': if mv == 'expected':
template_values.update({ mv : parse_list(value) }) template_values.update({ mv : parse_list(value) })
elif mv == 'image-deployment': elif mv == 'image-deployment':
template_values.update({ mv.replace('-', '_') : ", ".join(value) }) template_values.update({ mv.replace('-', '_') : ", ".join(sorted(value)) })
else: else:
# Set the priority_color. # Set the priority_color.
if mv == 'priority': if mv == 'priority':
......
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