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) } } }