From: jjpinto Date: Fri, 26 Dec 2025 14:39:48 +0000 (+0000) Subject: test: clarify log message for surrogate UTF-8 check X-Git-Tag: go1.26rc2~7^2~28 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f7b7e94b0a2798bab26e9906df823a0fe5bcddfd;p=gostls13.git test: clarify log message for surrogate UTF-8 check The current log message "does not error" is slightly ambiguous. This change clarifies the output. Change-Id: I5c2327b9fa3d3e28ce43ce1189f8b1b7663fe0d3 GitHub-Last-Rev: bb2b03fc909f0bae29ab540776ae1d28165a603a GitHub-Pull-Request: golang/go#76998 Reviewed-on: https://go-review.googlesource.com/c/go/+/732740 Reviewed-by: Keith Randall Reviewed-by: Keith Randall LUCI-TryBot-Result: Go LUCI Auto-Submit: Keith Randall Reviewed-by: Cherry Mui --- diff --git a/test/stringrange.go b/test/stringrange.go index 99e5edb5a4..d98013b876 100644 --- a/test/stringrange.go +++ b/test/stringrange.go @@ -59,7 +59,7 @@ func main() { for _, c := range "a\xed\xa0\x80a" { if c != 'a' && c != utf8.RuneError { - fmt.Printf("surrogate UTF-8 does not error: %U\n", c) + fmt.Printf("surrogate UTF-8 does not produce an error: %U\n", c) ok = false } }