Skip to content
Snippets Groups Projects
Unverified Commit 8d1dd194 authored by Roeland Jago Douma's avatar Roeland Jago Douma
Browse files

Fix tests

parent ca28df6f
No related branches found
No related tags found
No related merge requests found
...@@ -653,14 +653,14 @@ class LostControllerTest extends \Test\TestCase { ...@@ -653,14 +653,14 @@ class LostControllerTest extends \Test\TestCase {
public function testIsSetPasswordWithoutTokenFailing() { public function testIsSetPasswordWithoutTokenFailing() {
$this->config->method('getUserValue') $this->config->method('getUserValue')
->with('ValidTokenUser', 'core', 'lostpassword', null) ->with('ValidTokenUser', 'core', 'lostpassword', null)
->will($this->returnValue(null)); ->willReturn('aValidtoken');
$this->userManager->method('get') $this->userManager->method('get')
->with('ValidTokenUser') ->with('ValidTokenUser')
->willReturn($this->existingUser); ->willReturn($this->existingUser);
$this->crypto->method('decrypt') $this->crypto->method('decrypt')
->with( ->with(
$this->equalTo(''), $this->equalTo('aValidtoken'),
$this->equalTo('test@example.comSECRET') $this->equalTo('test@example.comSECRET')
)->willThrowException(new \Exception()); )->willThrowException(new \Exception());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment