From 608057b23bcd067e6f5fe130c6e395655432a448 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Wed, 18 Aug 2021 22:13:07 +0200 Subject: [PATCH] fix integration tests --- tests/imap_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/imap_test.rs b/tests/imap_test.rs index b1687e8a..ce822931 100644 --- a/tests/imap_test.rs +++ b/tests/imap_test.rs @@ -74,7 +74,7 @@ fn msg() { // List messages // TODO: check non-existance of \Seen flag - let msgs = imap_conn.list_msgs("INBOX", &10, &1).unwrap(); + let msgs = imap_conn.list_msgs("INBOX", &10, &0).unwrap(); let msgs = if let Some(ref fetches) = msgs { Msgs::from(fetches) } else {