We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c32d877 commit a7880d6Copy full SHA for a7880d6
tests/client.rs
@@ -89,7 +89,7 @@ async fn donot_set_content_length_0_if_have_no_body() {
89
async fn http3_request_full() {
90
use http_body_util::BodyExt;
91
92
- let server = server::http3(move |_req| async move {
+ let server = server::http3(move |req| async move {
93
assert_eq!(req.headers()[CONTENT_LENGTH], "5");
94
let reqb = req.collect().await.unwrap().to_bytes();
95
assert_eq!(reqb, "hello");
0 commit comments