From dde9ef531058fa86008036ac81dfd9127f41f4d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sun, 27 Feb 2022 21:45:50 +0000 Subject: [PATCH] junit: Change JUnit Result Data field to cdata The Result Data field contains the test output that was read from stdin. This used to be a chardata field, which escapes many characters in the resulting XML. Writing this output with tags makes the raw XML output much easier to read in e.g. a text editor. --- pkg/junit/junit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/junit/junit.go b/pkg/junit/junit.go index ac178cb..82123b1 100644 --- a/pkg/junit/junit.go +++ b/pkg/junit/junit.go @@ -102,7 +102,7 @@ type Property struct { type Result struct { Message string `xml:"message,attr"` Type string `xml:"type,attr,omitempty"` - Data string `xml:",chardata"` + Data string `xml:",cdata"` } // FormatDuration returns the JUnit string representation of the given