Skip to content

Commit ab92967

Browse files
committed
Fix
1 parent a04d657 commit ab92967

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

notify/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -444,8 +444,8 @@ mod tests {
444444
let child_dir = dir.path().join("child");
445445
fs::create_dir(&child_dir)?;
446446

447-
let mut watcher = recommended_watcher(|e| {
448-
println!("{:?}", e);
447+
let mut watcher = recommended_watcher(|_| {
448+
// Do something with the event
449449
})?;
450450
watcher.watch(&child_dir, RecursiveMode::NonRecursive)?;
451451

0 commit comments

Comments
 (0)