From fc8373f6b633336fd76c57128b902266430d0822 Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Fri, 23 Nov 2018 09:06:23 +0100 Subject: [PATCH] fix unit-test testCustomerEmailForwardersDelete() to comply with new testCustomerEmailForwardersAddWithSpaces() Signed-off-by: Michael Kaufmann --- tests/Emails/EmailsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Emails/EmailsTest.php b/tests/Emails/EmailsTest.php index b9091f8c..12836efb 100644 --- a/tests/Emails/EmailsTest.php +++ b/tests/Emails/EmailsTest.php @@ -312,7 +312,7 @@ class MailsTest extends TestCase ]; $json_result = EmailForwarders::getLocal($customer_userdata, $data)->delete(); $result = json_decode($json_result, true)['data']; - $this->assertEquals('other@domain.tld', $result['destination']); + $this->assertEquals('other@domain.tld other3@domain.tld', $result['destination']); } /**