1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-12-18 14:16:47 +00: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(); srv.serve::<_, ()>("127.0.0.1:58902").unwrap();
sys.run(); sys.run();
}); });
assert!(reqwest::get("http://localhost:58906/").unwrap().status().is_success()); assert!(reqwest::get("http://localhost:58902/").unwrap().status().is_success());
} }
#[test] #[test]