diff options
Diffstat (limited to 'src/onaptests/templates')
-rw-r--r-- | src/onaptests/templates/reporting/reporting.html.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/onaptests/templates/reporting/reporting.html.j2 b/src/onaptests/templates/reporting/reporting.html.j2 index 05c00b7..246f362 100644 --- a/src/onaptests/templates/reporting/reporting.html.j2 +++ b/src/onaptests/templates/reporting/reporting.html.j2 @@ -28,7 +28,7 @@ </thead> <tbody> {% for step_report in report.report %} - <tr {% if step_report.step_execution_status.value == 'FAIL' %} class="has-background-danger" {% else %} class="has-background-success-light" {% endif %}> + <tr {% if step_report.step_execution_status.value == 'FAIL' %} class="has-background-danger" {% elif step_report.step_execution_status.value == 'PASS' %} class="has-background-success-light" {% else %} class="has-background-warning-light" {% endif %}> <td> {{ step_report.step_description }} </td> |