1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-27 10:39:03 +02:00

fix test-server workspace setup

This commit is contained in:
Nikolay Kim
2019-04-02 14:04:28 -07:00
parent bca31eb7ad
commit deac983bc7
3 changed files with 6 additions and 1 deletions

View File

@ -36,7 +36,7 @@ use net2::TcpBuilder;
/// )
/// );
///
/// let req = srv.get();
/// let req = srv.get("/");
/// let response = srv.block_on(req.send()).unwrap();
/// assert!(response.status().is_success());
/// }