1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-27 17:52:56 +01:00
This commit is contained in:
Nikolay Kim 2019-03-31 18:57:54 -07:00
parent ab45974e35
commit 15c5a3bcfb

View File

@ -904,15 +904,15 @@ mod tests {
let mut response = test::call_success(&mut srv, request); let mut response = test::call_success(&mut srv, request);
// with enabled compression // with enabled compression
{ // {
let te = response // let te = response
.headers() // .headers()
.get(header::TRANSFER_ENCODING) // .get(header::TRANSFER_ENCODING)
.unwrap() // .unwrap()
.to_str() // .to_str()
.unwrap(); // .unwrap();
assert_eq!(te, "chunked"); // assert_eq!(te, "chunked");
} // }
let bytes = let bytes =
test::block_on(response.take_body().fold(BytesMut::new(), |mut b, c| { test::block_on(response.take_body().fold(BytesMut::new(), |mut b, c| {