diff options
Diffstat (limited to 'apps/encryption/tests/Controller/RecoveryControllerTest.php')
-rw-r--r-- | apps/encryption/tests/Controller/RecoveryControllerTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/encryption/tests/Controller/RecoveryControllerTest.php b/apps/encryption/tests/Controller/RecoveryControllerTest.php index e3614b918c3..c6f7a8649b6 100644 --- a/apps/encryption/tests/Controller/RecoveryControllerTest.php +++ b/apps/encryption/tests/Controller/RecoveryControllerTest.php @@ -108,10 +108,10 @@ class RecoveryControllerTest extends TestCase { $this->recoveryMock->expects($this->any()) ->method('changeRecoveryKeyPassword') ->with($password, $oldPassword) - ->will($this->returnValueMap([ + ->willReturnMap([ ['test', 'oldTestFail', false], ['test', 'oldtest', true] - ])); + ]); $response = $this->controller->changeRecoveryPassword($password, $oldPassword, @@ -140,10 +140,10 @@ class RecoveryControllerTest extends TestCase { $this->recoveryMock->expects($this->any()) ->method('setRecoveryForUser') ->with($enableRecovery) - ->will($this->returnValueMap([ + ->willReturnMap([ ['1', true], ['0', false] - ])); + ]); $response = $this->controller->userSetRecovery($enableRecovery); |