Remove unused function

This commit is contained in:
Joël Stemmer 2017-03-26 23:58:37 +01:00
parent baff58700e
commit c606832065

View File

@ -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)
}