From d8fb535f949536efcb8f4bba9e671d55e5d9aac2 Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Mon, 7 Aug 2023 12:24:52 +0200 Subject: [PATCH] fixup! feat: move messages to junk folder Signed-off-by: Daniel Kesselberg --- tests/Integration/Db/MailAccountTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Integration/Db/MailAccountTest.php b/tests/Integration/Db/MailAccountTest.php index 323f616d70..51b9d70181 100644 --- a/tests/Integration/Db/MailAccountTest.php +++ b/tests/Integration/Db/MailAccountTest.php @@ -78,6 +78,8 @@ public function testToAPI() { 'smimeCertificateId' => null, 'quotaPercentage' => 10, 'trashRetentionDays' => 60, + 'junkMailboxId' => null, + 'moveJunk' => false ], $a->toJson()); } @@ -111,6 +113,8 @@ public function testMailAccountConstruct() { 'smimeCertificateId' => null, 'quotaPercentage' => null, 'trashRetentionDays' => 60, + 'junkMailboxId' => null, + 'moveJunk' => false, ]; $a = new MailAccount($expected); // TODO: fix inconsistency