tune timeouts for tests

This commit is contained in:
Nikolay Kim 2020-04-14 11:32:28 +06:00
parent b17820ad57
commit 6a38decc80
2 changed files with 3 additions and 3 deletions

View file

@ -495,7 +495,7 @@ mod tests {
assert_eq!(buf, Bytes::from_static(b"test"));
drop(tx);
delay_for(Duration::from_millis(100)).await;
delay_for(Duration::from_millis(200)).await;
assert!(client.is_server_dropped());
}

View file

@ -220,9 +220,9 @@ fn test_panic_in_worker() {
// first connect get dropped, because there is no workers
assert!(net::TcpStream::connect(addr).is_ok());
thread::sleep(time::Duration::from_millis(100));
thread::sleep(time::Duration::from_millis(150));
assert!(net::TcpStream::connect(addr).is_ok());
thread::sleep(time::Duration::from_millis(100));
thread::sleep(time::Duration::from_millis(150));
assert_eq!(counter.load(Relaxed), 2);
let _ = sys.stop();