1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-27 09:42:57 +01:00
This commit is contained in:
Nikolay Kim 2017-10-22 17:47:22 -07:00
parent 5699af9795
commit 8c48fdb0fc

View File

@ -30,7 +30,7 @@ fn test_serve() {
srv.serve::<_, ()>("127.0.0.1:58902").unwrap();
sys.run();
});
assert!(reqwest::get("http://localhost:58906/").unwrap().status().is_success());
assert!(reqwest::get("http://localhost:58902/").unwrap().status().is_success());
}
#[test]