Skip to content

Commit

Permalink
fix: Increase sleep time in fig_test_utils server test (#526)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonskiser authored Jan 31, 2025
1 parent 8289b76 commit adb88b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/fig_test_utils/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ mod tests {
let addr = test_server_addr.address();
std::mem::drop(test_server_addr);
// wait for the task to complete
tokio::time::sleep(std::time::Duration::from_millis(10)).await;
tokio::time::sleep(std::time::Duration::from_millis(100)).await;
let response = reqwest::get(format!("http://{}{}", &addr, &test_path)).await;
assert!(response.is_err());
}
Expand Down

0 comments on commit adb88b6

Please sign in to comment.