From b4b377d1fa5b6d2d09360d27f7d40391a05e2cbc Mon Sep 17 00:00:00 2001 From: James Magahern Date: Wed, 17 Oct 2018 23:51:18 -0700 Subject: [PATCH] Also fix the new marked_as_deleted test to account for these changes --- test/engine/app/app-conversation-monitor-test.vala | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/engine/app/app-conversation-monitor-test.vala b/test/engine/app/app-conversation-monitor-test.vala index a00fe04e..70af36ec 100644 --- a/test/engine/app/app-conversation-monitor-test.vala +++ b/test/engine/app/app-conversation-monitor-test.vala @@ -348,6 +348,9 @@ class Geary.App.ConversationMonitorTest : TestCase { new Gee.HashMap(); flags_changed.set(e1.id, new EmailFlags.with(EmailFlags.DELETED)); this.account.email_flags_changed(this.base_folder, flags_changed); + + this.base_folder.expect_call("list_email_by_sparse_id_async"); + this.base_folder.expect_call("list_email_by_id_async"); wait_for_signal(monitor, "email-flags-changed");