Increase the timeout of happy integration tests (#494)

This commit is contained in:
Youngjoon Lee 2023-10-31 20:32:07 +09:00 committed by GitHub
parent 7dce530d13
commit ea1dcb82fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ struct Info {
}
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);
tokio::select! {
_ = timeout => panic!("timed out waiting for nodes to reach view {}", TARGET_VIEW),