Increase the timeout of happy integration tests (#494)
This commit is contained in:
parent
7dce530d13
commit
ea1dcb82fd
|
@ -14,7 +14,7 @@ struct Info {
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn happy_test(nodes: &[NomosNode]) {
|
async fn happy_test(nodes: &[NomosNode]) {
|
||||||
let timeout = std::time::Duration::from_secs(20);
|
let timeout = std::time::Duration::from_secs(30);
|
||||||
let timeout = tokio::time::sleep(timeout);
|
let timeout = tokio::time::sleep(timeout);
|
||||||
tokio::select! {
|
tokio::select! {
|
||||||
_ = timeout => panic!("timed out waiting for nodes to reach view {}", TARGET_VIEW),
|
_ = timeout => panic!("timed out waiting for nodes to reach view {}", TARGET_VIEW),
|
||||||
|
|
Loading…
Reference in New Issue