This commit is contained in:
Bill Thiede 2023-03-13 21:02:32 -07:00
parent 1a86204561
commit 321eca38e2

View File

@ -608,7 +608,7 @@ mod tests {
fn search() -> Result<(), NotmuchError> { fn search() -> Result<(), NotmuchError> {
let nm = Notmuch::with_config("testdata/notmuch.config"); let nm = Notmuch::with_config("testdata/notmuch.config");
nm.new()?; nm.new()?;
let res = nm.search("goof")?; let res = nm.search("goof", 0, 100)?;
assert_eq!(res.0.len(), 1); assert_eq!(res.0.len(), 1);
Ok(()) Ok(())
} }