Skip to content

Commit

Permalink
Fix flacky test
Browse files Browse the repository at this point in the history
  • Loading branch information
nviennot committed May 24, 2021
1 parent 5e93af8 commit bd70325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/process/process_group.rs
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ mod test {
drop(pgrp);

println!("elapsed time {}ms", start_time.elapsed().as_millis());
assert!(start_time.elapsed().as_millis() > 1000);
assert!(start_time.elapsed().as_millis() >= 1000);

Ok(())
}
Expand Down

0 comments on commit bd70325

Please sign in to comment.