1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-06-27 16:36:00 +00:00

Make parser compatible with Go 1.12

See changes in strings.Map(): https://golang.org/doc/go1.12#strings
This commit is contained in:
Frédéric Guillot 2019-02-28 21:22:58 -08:00
parent 45df254fe7
commit 6764a420b0
7 changed files with 31 additions and 39 deletions

View file

@ -187,7 +187,10 @@ func TestDifferentEncodingWithResponse(t *testing.T) {
}
r := &client.Response{Body: bytes.NewReader(content), ContentType: tc.contentType}
r.EnsureUnicodeBody()
if encodingErr := r.EnsureUnicodeBody(); encodingErr != nil {
t.Fatalf(`Encoding error for %q: %v`, tc.filename, encodingErr)
}
feed, parseErr := ParseFeed(r.String())
if parseErr != nil {
t.Fatalf(`Parsing error for %q - %q: %v`, tc.filename, tc.contentType, parseErr)