Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Korczynski <[email protected]>
  • Loading branch information
AdamKorcz committed Dec 19, 2024
1 parent 575e9c6 commit a7f8a1f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions receiver/cloudflarereceiver/fuzz_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ import (

func FuzzHandleReq(f *testing.F) {
f.Fuzz(func(t *testing.T, reqBody []byte, gZip bool) {

req, err := http.NewRequest("POST", "http://example.com", bytes.NewReader(reqBody))
req, err := http.NewRequest(http.MethodPost, "http://example.com", bytes.NewReader(reqBody))
if err != nil {
t.Skip()
}
Expand Down

0 comments on commit a7f8a1f

Please sign in to comment.