1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

tests: Decrease the various sleeps

This commit is contained in:
Sylvestre Ledru 2025-01-27 22:08:17 +01:00
parent dfd5885e37
commit f00a8c231b
3 changed files with 5 additions and 5 deletions

View file

@ -577,7 +577,7 @@ fn test_install_copy_then_compare_file_with_extra_mode() {
let mut file2_meta = at.metadata(file2);
let before = FileTime::from_last_modification_time(&file2_meta);
sleep(std::time::Duration::from_millis(1000));
sleep(std::time::Duration::from_millis(100));
scene
.ucmd()
@ -594,7 +594,7 @@ fn test_install_copy_then_compare_file_with_extra_mode() {
assert!(before != after_install_sticky);
sleep(std::time::Duration::from_millis(1000));
sleep(std::time::Duration::from_millis(100));
// dest file still 1644, so need_copy ought to return `true`
scene