From 271e9a14cd12deffe0945b3656dd7fbaf3b101a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Krmpoti=C4=87?= Date: Mon, 21 Aug 2023 11:12:22 +0200 Subject: [PATCH] strconv: avoid unnecessary raw string literal --- src/strconv/atob_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strconv/atob_test.go b/src/strconv/atob_test.go index f102d78d00..813809a532 100644 --- a/src/strconv/atob_test.go +++ b/src/strconv/atob_test.go @@ -65,7 +65,7 @@ var boolString = map[bool]string{ func TestFormatBool(t *testing.T) { for b, s := range boolString { if f := FormatBool(b); f != s { - t.Errorf(`FormatBool(%v): expected %q but got %q`, b, s, f) + t.Errorf("FormatBool(%v): expected %q but got %q", b, s, f) } } }