Skip to content

Commit

Permalink
Increase simulator timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
RReverser committed Sep 9, 2024
1 parent ce3025d commit 53e1c3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ mod test_utils {
}
} => {}
server_exited = server.wait() => eyre::bail!("Simulator process exited early: {}", server_exited?),
() = tokio::time::sleep(std::time::Duration::from_secs(5)) => eyre::bail!("Simulator process didn't start in time")
() = tokio::time::sleep(std::time::Duration::from_secs(10)) => eyre::bail!("Simulator process didn't start in time")
}

Ok(Self {
Expand Down

0 comments on commit 53e1c3d

Please sign in to comment.