From 8deab1d6acfeb2c53121d5fc8cf8675b22fddff4 Mon Sep 17 00:00:00 2001 From: Matheus de Mello Queiroz Date: Sat, 4 Jul 2020 12:30:59 -0300 Subject: [PATCH] Fixes broken link to mutation details on HTML report --- mutpy/templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mutpy/templates/index.html b/mutpy/templates/index.html index 19e3c099..9ed78fa9 100644 --- a/mutpy/templates/index.html +++ b/mutpy/templates/index.html @@ -62,7 +62,7 @@

Mutants [{{ score.all_mutants }}]

{% for mutation in mutations %} - {{ mutation.number }} + {{ mutation.number }} {{ mutation.module }} {% for single_mutation in mutation.mutations %}{{ single_mutation.operator }} [{{ single_mutation.lineno }}]{% if not loop.last %}, {% endif %}{% endfor %} {% if mutation.tests_run %}{{ mutation.tests_run }}{% else %}-{% endif %}