fix unit-test testCustomerEmailForwardersDelete() to comply with new testCustomerEmailForwardersAddWithSpaces()

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2018-11-23 09:06:23 +01:00
parent 1d3d8d0f28
commit fc8373f6b6

View File

@@ -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']);
}
/**