Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions HtmlTestRunner/template/report_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ <h2 class="text-capitalize">{{ title }}</h2>
{%- if (test_case.stdout or test_case.err or test_case.err) and test_case.outcome != test_case.SKIP %}
<tr style="display:none;">
<td class="col-xs-9" colspan="3">
{%- if test_case.stdout %}<p>{{ test_case.stdout }}</p>{% endif %}
{%- if test_case.err %}<p style="color:maroon;">{{ test_case.err[0].__name__ }}: {{ test_case.err[1] }}</p>{% endif %}
{%- if test_case.err %}<p style="color:maroon;">{{ test_case.test_exception_info }}</p>{% endif %}
{%- if test_case.stdout %}<pre>{{ test_case.stdout }}</pre>{% endif %}
{%- if test_case.err %}<pre style="color:maroon;">{{ test_case.err[0].__name__ }}: {{ test_case.err[1] }}</pre>{% endif %}
{%- if test_case.err %}<pre style="color:maroon;">{{ test_case.test_exception_info }}</pre>{% endif %}
</td>
</tr>
{%- endif %}
Expand Down