Skip to content

Commit 964fec5

Browse files
authored
Auto merge of #426 - jrmuizel:wait-200, r=kvark
Increase the threshold of acceptible values. This test sometimes fails on github actions.
2 parents e9e0c6e + e7c5320 commit 964fec5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core-foundation/src/runloop.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ mod test {
180180
CFRunLoop::run_current();
181181
let elapsed = elapsed_rx.try_recv().unwrap();
182182
println!("wait_200_milliseconds, elapsed: {}", elapsed);
183-
assert!(elapsed > 0.19 && elapsed < 0.30);
183+
assert!(elapsed > 0.19 && elapsed < 0.35);
184184
}
185185

186186
struct Info {

0 commit comments

Comments
 (0)