diff --git a/src/it/charset/src/test/java/CharsetTests.java b/src/it/charset/src/test/java/CharsetTests.java index 6db5b13..548f1ef 100644 --- a/src/it/charset/src/test/java/CharsetTests.java +++ b/src/it/charset/src/test/java/CharsetTests.java @@ -4,6 +4,8 @@ class CharsetTests { @Test void outputSomething() throws Exception { + // The degree sign (hex b0) will be prepended by 2c in UTF-8 + // For ISO output check for optional  (hex 2c) character System.out.println("UTF-8 degree sign is °"); } } diff --git a/src/it/charset/verify.bsh b/src/it/charset/verify.bsh index 7046ab8..fa5b8b4 100644 --- a/src/it/charset/verify.bsh +++ b/src/it/charset/verify.bsh @@ -19,7 +19,7 @@ verifier.verifyLogMatches(new String[] { ">> BEGIN >>", "[INFO] Launching JUnit Platform " + junitPlatformVersion + "...", ">> Platform executes tests...>>", - "\\Q[INFO]\\E UTF-8 degree sign is °", + "\\Q[INFO]\\E UTF-8 degree sign is Â?°", ">> Platform executes tests...>>", "[INFO] BUILD SUCCESS", ">> END. >>"