Skip to content

Commit

Permalink
Fixes broken link to mutation details on HTML report
Browse files Browse the repository at this point in the history
  • Loading branch information
mqueiroz1995 committed Jul 4, 2020
1 parent 5c8b3ca commit 8deab1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mutpy/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ <h4>Mutants [{{ score.all_mutants }}]</h4>
</thead>
{% for mutation in mutations %}
<tr>
<td><a href="{{ mutation.number}}.html">{{ mutation.number }}</a></td>
<td><a href="mutants/{{ mutation.number}}.html">{{ mutation.number }}</a></td>
<td><code>{{ mutation.module }}</code></td>
<td>{% for single_mutation in mutation.mutations %}{{ single_mutation.operator }} [{{ single_mutation.lineno }}]{% if not loop.last %}, {% endif %}{% endfor %}</td>
<td>{% if mutation.tests_run %}{{ mutation.tests_run }}{% else %}-{% endif %}</td>
Expand Down

0 comments on commit 8deab1d

Please sign in to comment.