Fix scrutinizer issues

This commit is contained in:
Lukas Reschke 2014-10-21 18:31:41 +02:00
parent 1b50d4f7ce
commit 60ae2894aa
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}