Skip to content

Commit 3746b1c

Browse files
authored
Merge pull request #2 from mbellotti/skipped-score
Remove skipped tests from total score
2 parents ff853d4 + 255b0a3 commit 3746b1c

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
@@ -159,7 +159,7 @@ func (ms *mutationStats) Score() float64 {
159159
}
160160

161161
func (ms *mutationStats) Total() int {
162-
return ms.passed + ms.failed + ms.skipped
162+
return ms.passed + ms.failed
163163
}
164164

165165
func getJobs(opts *options) int {

0 commit comments

Comments
 (0)