1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-03 08:41:55 +00:00

sleep for test

This commit is contained in:
Nikolay Kim 2018-03-02 11:32:37 -08:00
parent 3b2928a391
commit bebfc6c9b5

View file

@ -121,7 +121,7 @@ fn test_shutdown() {
assert!(response.status().is_success()); assert!(response.status().is_success());
} }
thread::sleep(time::Duration::from_millis(100)); thread::sleep(time::Duration::from_millis(1000));
assert!(net::TcpStream::connect(addr).is_err()); assert!(net::TcpStream::connect(addr).is_err());
} }