From cf9319c39360ef2e16969d469e66cb29c843b843 Mon Sep 17 00:00:00 2001 From: Valentin271 Date: Wed, 20 Dec 2023 22:17:57 +0100 Subject: [PATCH] restore delays --- src/file_watcher/tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/file_watcher/tests.rs b/src/file_watcher/tests.rs index c1953723..983c56c2 100644 --- a/src/file_watcher/tests.rs +++ b/src/file_watcher/tests.rs @@ -32,8 +32,8 @@ struct Delays { impl Delays { fn new() -> Self { Self { - delay: Duration::from_millis(200), - short_timeout: Duration::from_millis(100), + delay: Duration::from_millis(75), + short_timeout: Duration::from_millis(25), long_timeout: Duration::from_millis(1_500), } }