Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirvivien committed Jun 8, 2024
1 parent e2b8edb commit c8a1ebc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion http/http_reader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func TestHttpReader_Bytes(t *testing.T) {
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte(test.data))
fmt.Fprint(w, string(test.data))
}))
defer ts.Close()

Expand Down

0 comments on commit c8a1ebc

Please sign in to comment.