strconv: avoid unnecessary raw string literal

This commit is contained in:
Luka Krmpotić 2023-08-21 11:12:22 +02:00
parent d70fa2760a
commit 271e9a14cd
1 changed files with 1 additions and 1 deletions

View File

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