From 4b17bb5d0995a13bcb4369a3f98962be792e4aa5 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Mon, 26 May 2025 21:01:28 -0400 Subject: [PATCH] Increase watcher startup wait --- libmarlin/src/watcher_tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libmarlin/src/watcher_tests.rs b/libmarlin/src/watcher_tests.rs index c486bfa..97b9503 100644 --- a/libmarlin/src/watcher_tests.rs +++ b/libmarlin/src/watcher_tests.rs @@ -74,7 +74,7 @@ mod tests { ) .unwrap(); - thread::sleep(Duration::from_millis(100)); + thread::sleep(Duration::from_millis(250)); let new_file = dir.join("b.txt"); fs::rename(&file, &new_file).unwrap(); @@ -123,7 +123,7 @@ mod tests { ) .unwrap(); - thread::sleep(Duration::from_millis(100)); + thread::sleep(Duration::from_millis(250)); let new = dir.join("newdir"); fs::rename(&sub, &new).unwrap(); let new_canonical = canonicalize_lossy(&new);