Skip to content

Commit

Permalink
Update join test timing slop
Browse files Browse the repository at this point in the history
  • Loading branch information
sagebind committed Feb 6, 2023
1 parent aa5341f commit 0521130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ fn task_join_timeout() {
let pool = single_thread();

let result = pool
.execute(|| thread::sleep(Duration::from_millis(50)))
.execute(|| thread::sleep(Duration::from_secs(5)))
.join_timeout(Duration::from_millis(10));

assert!(result.is_err());
Expand Down

0 comments on commit 0521130

Please sign in to comment.