Skip to content

Commit

Permalink
fix: increased tests timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
BastienFaivre committed Jan 8, 2025
1 parent 92e9aa0 commit ba5109c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dog/tests/tests/dog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub async fn two_nodes_bidirectional() {
test.publish_on_node(1, format!("Hello #{} from node 2!", i).into_bytes());
}

sleep(Duration::from_secs(2)).await;
sleep(Duration::from_secs(5)).await;

let peer_ids = test.peer_ids();
let events = test.collect_events();
Expand Down Expand Up @@ -90,7 +90,7 @@ pub async fn n_nodes_aligned() {
}
}

sleep(Duration::from_secs(2)).await;
sleep(Duration::from_secs(5)).await;

let peer_ids = test.peer_ids();
let events = test.collect_events();
Expand Down Expand Up @@ -168,7 +168,7 @@ pub async fn simple_redundancy() {
test.publish_on_node(i, format!("Hello from node {}!", i).into_bytes());
}

sleep(Duration::from_secs(2)).await;
sleep(Duration::from_secs(5)).await;

let peer_ids = test.peer_ids();
let events = test.collect_events();
Expand Down

0 comments on commit ba5109c

Please sign in to comment.