diff options
Diffstat (limited to 'utils/test/reporting/functest/template')
-rw-r--r-- | utils/test/reporting/functest/template/index-tempest-tmpl.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/utils/test/reporting/functest/template/index-tempest-tmpl.html b/utils/test/reporting/functest/template/index-tempest-tmpl.html index be0b79734..b8260ed3c 100644 --- a/utils/test/reporting/functest/template/index-tempest-tmpl.html +++ b/utils/test/reporting/functest/template/index-tempest-tmpl.html @@ -67,14 +67,18 @@ <td>{{item}}</td> <td>{{result.details[item]}}</td> <td><span class="glyphicon glyphicon-ok"></td> - <td>{{result.errors[item]}}</td> + {% if item is equalto "Success rate" %} + <td>{{result.errors}}</td> + {% endif %} </tr> {%- else -%} <tr class="tr-danger"> <td>{{item}}</td> <td>{{result.details[item]}}</td> <td><span class="glyphicon glyphicon-remove"></td> - <td>{{result.errors[item]}}</td> + {% if item is equalto "Success rate" %} + <td>{{result.errors}}</td> + {% endif %} </tr> {%- endif %} {%- endif %} |