aboutsummaryrefslogtreecommitdiff
path: root/header_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'header_test.go')
-rw-r--r--header_test.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/header_test.go b/header_test.go
index 83b8a9c..163fdd7 100644
--- a/header_test.go
+++ b/header_test.go
@@ -1110,26 +1110,6 @@ func testVisitHeaderParams(t *testing.T, header string, expectedParams [][2]stri
}
}
-func FuzzVisitHeaderParams(f *testing.F) {
- inputs := []string{
- `application/json; v=1; foo=bar; q=0.938; param=param; param="big fox"; q=0.43`,
- `*/*`,
- `\\`,
- `text/plain; foo="\\\"\'\\''\'"`,
- }
- for _, input := range inputs {
- f.Add([]byte(input))
- }
- f.Fuzz(func(t *testing.T, header []byte) {
- VisitHeaderParams(header, func(key, value []byte) bool {
- if len(key) == 0 {
- t.Errorf("Unexpected length zero parameter, failed input was: %s", header)
- }
- return true
- })
- })
-}
-
func TestRequestMultipartFormBoundary(t *testing.T) {
t.Parallel()