Skip to content

Commit b98a168

Browse files
committed
remove skipped from total score
1 parent 6d92170 commit b98a168

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/go-mutesting/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ func (ms *mutationStats) Score() float64 {
155155
}
156156

157157
func (ms *mutationStats) Total() int {
158-
return ms.passed + ms.failed + ms.skipped
158+
return ms.passed + ms.failed
159159
}
160160

161161
func mainCmd(args []string) int {

0 commit comments

Comments
 (0)