style: gofmt

This commit is contained in:
Nao Yonashiro 2021-08-25 11:25:00 +09:00
parent ae9148555a
commit e8637832dd
2 changed files with 2 additions and 2 deletions

View File

@ -247,7 +247,7 @@ func stringBytes(s *Stream) ([]byte, error) {
} }
goto ERROR goto ERROR
} }
r, size := utf8.DecodeRune(s.buf[cursor:]) r, size := utf8.DecodeRune(s.buf[cursor:])
if r == utf8.RuneError { if r == utf8.RuneError {
s.buf = append(append(append([]byte{}, s.buf[:cursor]...), runeErrBytes...), s.buf[cursor+1:]...) s.buf = append(append(append([]byte{}, s.buf[:cursor]...), runeErrBytes...), s.buf[cursor+1:]...)
cursor += runeErrBytesLen cursor += runeErrBytesLen

View File

@ -512,7 +512,7 @@ func TestLongUTF8(t *testing.T) {
t.Fatalf("Unexpected error: %v", err) t.Fatalf("Unexpected error: %v", err)
} }
if got != want { if got != want {
t.Errorf("string %q; want = %q", got, want) t.Errorf("string %q; want = %q", got, want)
} }
} }