We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1abd85c commit e1f7af6Copy full SHA for e1f7af6
src/debouncer.rs
@@ -119,7 +119,7 @@ mod tests {
119
assert!(!debouncer.is_debounced(now, &token2));
120
assert_eq!(debouncer.count(), 0);
121
122
- assert_eq!(debouncer.notify(now, token1.clone()), true);
+ assert!(debouncer.notify(now, token1.clone()));
123
124
assert!(debouncer.is_debounced(now, &token1));
125
0 commit comments