1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-25 06:39:22 +02:00

more patch cratesio

This commit is contained in:
Nikolay Kim
2019-04-02 14:47:59 -07:00
parent 00000fb316
commit db1f7651a3
2 changed files with 5 additions and 3 deletions

View File

@ -61,9 +61,7 @@ fn test_connection_close() {
.finish(|_| ok::<_, ()>(Response::Ok().body(STR)))
.map(|_| ())
});
let response = srv
.block_on(srv.get("/").close_connection().send())
.unwrap();
let response = srv.block_on(srv.get("/").force_close().send()).unwrap();
assert!(response.status().is_success());
}