diff --git a/fuzz/fuzz_targets/fuzz_client.rs b/fuzz/fuzz_targets/fuzz_client.rs index 8d558a9..0b46726 100644 --- a/fuzz/fuzz_targets/fuzz_client.rs +++ b/fuzz/fuzz_targets/fuzz_client.rs @@ -21,7 +21,10 @@ async fn fuzz_entry(inp: HttpSpec) { .await .unwrap(); - let (_, _) = client.send_request(req, true).unwrap(); + // this could still trigger a user error: + // - if the uri isn't absolute + // - if the header name isn't allowed in http2 (like connection) + let _ = client.send_request(req, true); } }