mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-27 17:52:56 +01:00
fix test
This commit is contained in:
parent
ab45974e35
commit
15c5a3bcfb
@ -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| {
|
||||||
|
Loading…
Reference in New Issue
Block a user