1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-03-07 03:51:17 +00:00

test timing

This commit is contained in:
Nikolay Kim 2018-08-01 16:41:24 -07:00
parent 0da3fdcb09
commit e9c1889df4

View file

@ -887,6 +887,7 @@ fn test_brotli_encoding_large() {
fn test_h2() {
let srv = test::TestServer::new(|app| app.handler(|_| HttpResponse::Ok().body(STR)));
let addr = srv.addr();
thread::sleep(time::Duration::from_millis(500));
let mut core = Runtime::new().unwrap();
let tcp = TcpStream::connect(&addr);