diff --git a/notmuch/src/lib.rs b/notmuch/src/lib.rs index af9465c..07d6f91 100644 --- a/notmuch/src/lib.rs +++ b/notmuch/src/lib.rs @@ -608,7 +608,7 @@ mod tests { fn search() -> Result<(), NotmuchError> { let nm = Notmuch::with_config("testdata/notmuch.config"); nm.new()?; - let res = nm.search("goof")?; + let res = nm.search("goof", 0, 100)?; assert_eq!(res.0.len(), 1); Ok(()) }