Skip to content

Commit

Permalink
widen the sleep time to try to make tests reliable
Browse files Browse the repository at this point in the history
  • Loading branch information
acw committed Aug 12, 2024
1 parent 596e5eb commit 3cd26ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/tests/integration/vcpu_time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ viceroy_test!(vcpu_time_getter_works, |is_component| {
let resp = Test::using_fixture("vcpu_time_test.wasm")
.adapt_component(is_component)
.backend("slow-server", "/", None, |_| {
std::thread::sleep(std::time::Duration::from_millis(3000));
std::thread::sleep(std::time::Duration::from_millis(4000));
Response::builder()
.status(StatusCode::OK)
.body(vec![])
Expand Down

0 comments on commit 3cd26ca

Please sign in to comment.