Skip to content

Commit

Permalink
tighten test duration
Browse files Browse the repository at this point in the history
  • Loading branch information
vicsn committed Dec 7, 2023
1 parent e65b1d6 commit 3ff7e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/bft/tests/narwhal_e2e.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ async fn test_storage_coherence() {
const TARGET_ROUND: u64 = 12;
// Note: cloning the network is fine because the primaries it wraps are `Arc`ed.
let network_clone = network.clone();
deadline!(Duration::from_secs(55), move || { network_clone.is_round_reached(TARGET_ROUND) });
deadline!(Duration::from_secs(45), move || { network_clone.is_round_reached(TARGET_ROUND) });

// Check the committee is coherent across the network up to the target round. We skip the
// genesis round.
Expand Down

0 comments on commit 3ff7e91

Please sign in to comment.