From 2b3d79c5727c4b21527ffdc62296023a89931760 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sat, 17 Sep 2022 22:33:04 +0100 Subject: [PATCH] junit: Specify unicode replacement character as \uFFFD This is just to make the exact character we want to return explicit, otherwise it could be confused by any unsupported character in your text editor. --- junit/junit.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/junit/junit.go b/junit/junit.go index 65117a2..38c8cfd 100644 --- a/junit/junit.go +++ b/junit/junit.go @@ -244,14 +244,14 @@ func escapeIllegalChars(str string) string { if isInCharacterRange(r) { return r } - return '�' + return '\uFFFD' }, str) } // Decide whether the given rune is in the XML Character Range, per // the Char production of https://www.xml.com/axml/testaxml.htm, // Section 2.2 Characters. -// Form: encoding/xml/xml.go +// From: encoding/xml/xml.go func isInCharacterRange(r rune) (inrange bool) { return r == 0x09 || r == 0x0A ||