diff --git a/junit-formatter.go b/junit-formatter.go index ffea6a6..f497303 100644 --- a/junit-formatter.go +++ b/junit-formatter.go @@ -135,15 +135,6 @@ func JUnitReportXML(report *parser.Report, noXMLHeader bool, goVersion string, w return nil } -func countFailures(tests []parser.Test) (result int) { - for _, test := range tests { - if test.Result == parser.FAIL { - result++ - } - } - return -} - func formatTime(time int) string { return fmt.Sprintf("%.3f", float64(time)/1000.0) }