From 8c48fdb0fc11fd9ff9d2779e3326c16dc793a232 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Sun, 22 Oct 2017 17:47:22 -0700 Subject: [PATCH] fix test --- tests/test_server.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_server.rs b/tests/test_server.rs index b4dd95763..6a94a5a72 100644 --- a/tests/test_server.rs +++ b/tests/test_server.rs @@ -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]