Skip to content

Commit

Permalink
adjust sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
dailinsubjam committed Sep 3, 2024
1 parent 57c8281 commit a83703b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/marketplace/src/testing/order_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,8 @@ async fn test_builder_order_chain_fork() {
.unwrap();

let req_msg = get_req_msg(round as u64, builder_state_id).await;
// give builder state time to fork
// async_sleep(Duration::from_secs(1)).await;

// get the builder state for parent view we've just simulated
global_state
Expand Down Expand Up @@ -347,7 +349,7 @@ async fn test_builder_order_chain_fork() {
if fork {
let req_msg_2 = get_req_msg(round as u64, builder_state_id_2).await;
// give builder state time to fork
async_sleep(Duration::from_secs(1)).await;
// async_sleep(Duration::from_secs(1)).await;

// get the builder state for parent view we've just simulated
global_state
Expand Down

0 comments on commit a83703b

Please sign in to comment.