more linting issues

This commit is contained in:
6543 2022-06-10 19:35:59 +02:00
parent 7c68a59f39
commit de9c37d72b
2 changed files with 8 additions and 2 deletions

View file

@ -61,6 +61,6 @@ func getTestHTTPSClient() *http.Client {
func getSize(stream io.Reader) int {
buf := new(bytes.Buffer)
buf.ReadFrom(stream)
_, _ = buf.ReadFrom(stream)
return buf.Len()
}