From 38643b3537c92a17a73a6258d47c326130a9615b Mon Sep 17 00:00:00 2001 From: Judson Lester Date: Wed, 24 Apr 2024 13:52:20 -0700 Subject: [PATCH] fix(test) macos excluded function didn't compile --- src/watch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/watch.rs b/src/watch.rs index 18bef00d..6264f26a 100644 --- a/src/watch.rs +++ b/src/watch.rs @@ -511,7 +511,7 @@ mod tests { // Note, this is racey in the kernel. Otherwise I'd assert // this is empty. sleep(WATCHER_TIMEOUT); - watcher.rx.try_iter(); + watcher.event_rx.try_iter(); } #[cfg(not(target_os = "macos"))]