From 1d8ac7f23a96ab9c9e0cac1267bf589d4072d202 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sun, 13 Nov 2022 15:42:51 -0800 Subject: [PATCH] notmuch: correct test. --- notmuch/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notmuch/src/lib.rs b/notmuch/src/lib.rs index 230a3ae..e22489d 100644 --- a/notmuch/src/lib.rs +++ b/notmuch/src/lib.rs @@ -611,7 +611,7 @@ mod tests { let nm = Notmuch::with_config("testdata/notmuch.config"); nm.new()?; let c = nm.count("*")?; - assert_eq!(c, 13); + assert_eq!(c, 14); Ok(()) }