From d0cb4ab4a1ad7c9ba195d58da08909ed3c4ad019 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sun, 6 Mar 2022 14:50:53 +0000 Subject: [PATCH] Remove unused toXML function from go-junit-report_test --- go-junit-report_test.go | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/go-junit-report_test.go b/go-junit-report_test.go index 1d59bda..8d4b8d5 100644 --- a/go-junit-report_test.go +++ b/go-junit-report_test.go @@ -1664,23 +1664,6 @@ func getProperty(name string, properties []junit.Property) (int, junit.Property) return -1, junit.Property{} } -func toXML(testsuites junit.Testsuites) (string, error) { - var buf bytes.Buffer - - fmt.Fprintf(&buf, xml.Header) - - enc := xml.NewEncoder(&buf) - enc.Indent("", "\t") - - if err := enc.Encode(testsuites); err != nil { - return "", err - } - if err := enc.Flush(); err != nil { - return "", err - } - return buf.String(), nil -} - func TestParser(t *testing.T) { matchRegex := compileMatch(t) for _, testCase := range testCases { @@ -1811,8 +1794,8 @@ func testJUnitFormatter(t *testing.T, goVersion string) { t.Fatal(err) } - if string(junitReport.Bytes()) != report { - t.Errorf("Fail: %s Report xml ==\n%s, want\n%s", testCase.name, string(junitReport.Bytes()), report) + if junitReport.String() != report { + t.Errorf("Fail: %s Report xml ==\n%s, want\n%s", testCase.name, junitReport.String(), report) } } }