Skip to content

Commit adb88b6

Browse files
fix: Increase sleep time in fig_test_utils server test (#526)
1 parent 8289b76 commit adb88b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/fig_test_utils/src/server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ mod tests {
169169
let addr = test_server_addr.address();
170170
std::mem::drop(test_server_addr);
171171
// wait for the task to complete
172-
tokio::time::sleep(std::time::Duration::from_millis(10)).await;
172+
tokio::time::sleep(std::time::Duration::from_millis(100)).await;
173173
let response = reqwest::get(format!("http://{}{}", &addr, &test_path)).await;
174174
assert!(response.is_err());
175175
}

0 commit comments

Comments
 (0)