1
0
Fork 0

chore: update linter

This commit is contained in:
Ludovic Fernandez 2023-06-05 10:24:06 +02:00 committed by GitHub
parent db515195f0
commit c5f23493ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 28 additions and 24 deletions

View file

@ -177,7 +177,7 @@ func generateBytes(length int) []byte {
}
func TestRequestReader(t *testing.T) {
buff := bytes.NewBuffer([]byte("foo"))
buff := bytes.NewBufferString("foo")
rr := readCounter{source: io.NopCloser(buff)}
assert.Equal(t, int64(0), rr.size)