mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 21:18:08 -05:00
Remove unused function
This commit is contained in:
parent
baff58700e
commit
c606832065
@ -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)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user