summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/core/lostpassword/controller/lostcontrollertest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core/lostpassword/controller/lostcontrollertest.php b/tests/core/lostpassword/controller/lostcontrollertest.php
index 0a598d1f191..c513ce17c7e 100644
--- a/tests/core/lostpassword/controller/lostcontrollertest.php
+++ b/tests/core/lostpassword/controller/lostcontrollertest.php
@@ -132,7 +132,7 @@ class LostControllerTest extends \PHPUnit_Framework_TestCase {
->with('core.lost.setPassword', array('userId' => 'ExistingUser', 'token' => 'ThisIsMaybeANotSoSecretToken!'))
->will($this->returnValue('https://ownCloud.com/index.php/lostpassword/'));
- $response = $this->lostController->email('ExistingUser', true);
+ $response = $this->lostController->email('ExistingUser');
$expectedResponse = array('status' => 'success');
$this->assertSame($expectedResponse, $response);
}