Skip to content

Commit

Permalink
Avoid reusing variable names in the HTML test result template
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoabinader committed Aug 28, 2017
1 parent f8a0b0f commit ff7adb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/results.html.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<button id='toggle-sequence'>Toggle showing test sequence</button>
<div id='test-sequence' style='display:none'>
<strong style="color: black;">Test sequence:</strong>
<% for (const r of sequence) { %><%- r.params.group %>/<%- r.params.test %> <% } %>
<% for (const s of sequence) { %><%- s.params.group %>/<%- s.params.test %> <% } %>
</div>
<% } %>
<button id='toggle-passed'>Toggle showing passed tests</button>
Expand Down

0 comments on commit ff7adb3

Please sign in to comment.