From 60ae2894aa298cc2ee5bb2a59312303746bbd633 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Tue, 21 Oct 2014 18:31:41 +0200 Subject: [PATCH] Fix scrutinizer issues --- tests/core/lostpassword/controller/lostcontrollertest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/lostpassword/controller/lostcontrollertest.php b/tests/core/lostpassword/controller/lostcontrollertest.php index 0a598d1f19..c513ce17c7 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); }