Skip to content

Commit 87c467c

Browse files
committed
Fix input tag
Removed extra `/` that caused reporting of next </span> tag
1 parent d729a7a commit 87c467c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pytest_html/resources/index.jinja2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<div class="controls">
8383
<div class="filters">
8484
{%- for result, values in outcomes.items() %}
85-
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="{{ result }}" {{ "disabled" if values["value"] == 0 }}/>
85+
<input checked="true" class="filter" name="filter_checkbox" type="checkbox" data-test-result="{{ result }}" {{ "disabled" if values["value"] == 0 }}>
8686
<span class="{{ result }}">{{ values["value"] }} {{ values["label"] }}{{ "," if result != "rerun" }}</span>
8787
{%- endfor %}
8888
</div>

0 commit comments

Comments
 (0)