From b98a1685413e9198a3e10ee244cfaea917c78b25 Mon Sep 17 00:00:00 2001 From: Felipe Bustamante Date: Fri, 10 Sep 2021 09:36:10 -0300 Subject: [PATCH] remove skipped from total score --- cmd/go-mutesting/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/go-mutesting/main.go b/cmd/go-mutesting/main.go index ee786f5..c4ac27e 100644 --- a/cmd/go-mutesting/main.go +++ b/cmd/go-mutesting/main.go @@ -155,7 +155,7 @@ func (ms *mutationStats) Score() float64 { } func (ms *mutationStats) Total() int { - return ms.passed + ms.failed + ms.skipped + return ms.passed + ms.failed } func mainCmd(args []string) int {