Skip to content

Commit 855a2ad

Browse files
committed
give macOS more time
1 parent f0c6f0d commit 855a2ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/pass/concurrency/sync.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ fn check_conditional_variables_timed_wait_notimeout() {
8181
cvar.notify_one();
8282
});
8383

84-
let (_guard, timeout) = cvar.wait_timeout(guard, Duration::from_millis(500)).unwrap();
84+
let (_guard, timeout) = cvar.wait_timeout(guard, Duration::from_millis(1000)).unwrap();
8585
assert!(!timeout.timed_out());
8686
handle.join().unwrap();
8787
}

0 commit comments

Comments
 (0)