Skip to content

Commit

Permalink
Remove unneeded timeout (#20758)
Browse files Browse the repository at this point in the history
  • Loading branch information
mystenmark authored Jan 7, 2025
1 parent 3394fde commit 332ef78
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions crates/sui-benchmark/tests/simtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -933,12 +933,7 @@ mod test {
.await
.into();

tokio::time::timeout(
Duration::from_secs(120),
test_simulated_load(test_cluster, 60),
)
.await
.expect("test_backpressure timed out");
test_simulated_load(test_cluster, 60).await;
}

fn handle_bool_failpoint(
Expand Down

0 comments on commit 332ef78

Please sign in to comment.