1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-07-12 08:46:16 +00:00

stable compat

This commit is contained in:
Nikolay Kim 2018-06-01 12:17:13 -07:00
parent 8452c7a044
commit 8f42fec9b2

View file

@ -32,7 +32,7 @@ use tokio::executor::current_thread;
use tokio::runtime::current_thread::Runtime; use tokio::runtime::current_thread::Runtime;
use tokio_tcp::TcpStream; use tokio_tcp::TcpStream;
use actix::{msgs::SystemExit, Arbiter, System}; use actix::{msgs, Arbiter, System};
use actix_web::*; use actix_web::*;
const STR: &str = "Hello World Hello World Hello World Hello World Hello World \ const STR: &str = "Hello World Hello World Hello World Hello World Hello World \
@ -110,7 +110,7 @@ fn test_start() {
assert!(response.status().is_success()); assert!(response.status().is_success());
} }
let _ = sys.send(SystemExit(0)).wait(); let _ = sys.send(msgs::SystemExit(0)).wait();
} }
#[test] #[test]
@ -148,7 +148,7 @@ fn test_shutdown() {
thread::sleep(time::Duration::from_millis(1000)); thread::sleep(time::Duration::from_millis(1000));
assert!(net::TcpStream::connect(addr).is_err()); assert!(net::TcpStream::connect(addr).is_err());
let _ = sys.send(SystemExit(0)).wait(); let _ = sys.send(msgs::SystemExit(0)).wait();
} }
#[test] #[test]