1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-09-15 18:57:04 +00:00

Add FeedIcon API call and update dependencies

This commit is contained in:
Frédéric Guillot 2017-12-16 11:25:18 -08:00
parent 231ebf2daa
commit 27196589fb
262 changed files with 83830 additions and 30061 deletions

0
vendor/golang.org/x/text/number/format.go generated vendored Executable file → Normal file
View file

View file

@ -98,9 +98,14 @@ func TestPluralIntegration(t *testing.T) {
p := message.NewPrinter(language.English)
got := p.Sprintf("num %f", tc.f)
// Indirect the call to p.Sprintf through the variable f
// to avoid Go tip failing a vet check.
// TODO: remove once vet check has been fixed. See Issue #22936.
f := p.Sprintf
got := f("num %f", tc.f)
if got != tc.want {
t.Errorf("got %v; want %v", got, tc.want)
t.Errorf("got %q; want %q", got, tc.want)
}
})
}

0
vendor/golang.org/x/text/number/number.go generated vendored Executable file → Normal file
View file