From f24f888e54adcaa60db240990a94f8eda2918ac3 Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Wed, 16 Aug 2023 16:02:02 +0200 Subject: [PATCH] fix: remove moveJunk from integration test as well Signed-off-by: Daniel Kesselberg --- tests/Integration/Db/MailAccountTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/Integration/Db/MailAccountTest.php b/tests/Integration/Db/MailAccountTest.php index 2bd2c45490..71b6f44c1b 100644 --- a/tests/Integration/Db/MailAccountTest.php +++ b/tests/Integration/Db/MailAccountTest.php @@ -79,7 +79,6 @@ public function testToAPI() { 'quotaPercentage' => 10, 'trashRetentionDays' => 60, 'junkMailboxId' => null, - 'moveJunk' => false, 'snoozeMailboxId' => null ], $a->toJson()); } @@ -115,7 +114,6 @@ public function testMailAccountConstruct() { 'quotaPercentage' => null, 'trashRetentionDays' => 60, 'junkMailboxId' => null, - 'moveJunk' => false, 'snoozeMailboxId' => null, ]; $a = new MailAccount($expected);