mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
tune timeouts for tests
This commit is contained in:
parent
b17820ad57
commit
6a38decc80
2 changed files with 3 additions and 3 deletions
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue