From dfd70337d6db5e6e15f6763d5e8762f189e9fd71 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 19 Feb 2015 19:40:05 +0100 Subject: [PATCH] Adjust unit test --- tests/settings/controller/userscontrollertest.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/settings/controller/userscontrollertest.php b/tests/settings/controller/userscontrollertest.php index 3f69d1e7d18..25c935bef58 100644 --- a/tests/settings/controller/userscontrollertest.php +++ b/tests/settings/controller/userscontrollertest.php @@ -1208,10 +1208,15 @@ class UsersControllerTest extends \Test\TestCase { $this->container['Mailer'] ->expects($this->at(0)) + ->method('validateMailAddress') + ->with('validMail@Adre.ss') + ->will($this->returnValue(true)); + $this->container['Mailer'] + ->expects($this->at(1)) ->method('createMessage') ->will($this->returnValue($message)); $this->container['Mailer'] - ->expects($this->at(1)) + ->expects($this->at(2)) ->method('send') ->with($message); -- 2.39.5