From c606832065764d547697f988510f26a02cb1423b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sun, 26 Mar 2017 23:58:37 +0100 Subject: [PATCH] Remove unused function --- junit-formatter.go | 9 --------- 1 file changed, 9 deletions(-) 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) }