From cc9c6f414874da17831522e15b25cdc20664a8b3 Mon Sep 17 00:00:00 2001 From: Weixie Cui Date: Mon, 20 Apr 2026 20:54:12 +0800 Subject: [PATCH] internal: fmt.Println -> fmt.Fprintln --- internal/utesting/utesting.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/utesting/utesting.go b/internal/utesting/utesting.go index 8260de1d76..0a72892dc6 100644 --- a/internal/utesting/utesting.go +++ b/internal/utesting/utesting.go @@ -221,7 +221,7 @@ func (w *indentWriter) Write(b []byte) (n int, err error) { // flush ensures the current line is terminated. func (w *indentWriter) flush() { if w.inLine { - fmt.Println(w.out) + fmt.Fprintln(w.out) w.inLine = false } }