summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2019-07-21 19:17:41 +0200
committermsquare <msquare@notrademark.de>2019-07-21 19:17:41 +0200
commit6df62659dab24eb6fa02c4bd3117edaceecd4383 (patch)
treebc07c047f707c7e3517026bd244d96600ec02672
parenteefae43a47a3f85c4a963c7b7c506425715cab96 (diff)
show password recovery always, fix test
-rw-r--r--tests/Unit/Controllers/AuthControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Unit/Controllers/AuthControllerTest.php b/tests/Unit/Controllers/AuthControllerTest.php
index c3d9659c..6c237264 100644
--- a/tests/Unit/Controllers/AuthControllerTest.php
+++ b/tests/Unit/Controllers/AuthControllerTest.php
@@ -89,7 +89,7 @@ class AuthControllerTest extends TestCase
$response->expects($this->once())
->method('withView')
- ->with('pages/login', ['errors' => Collection::make(['auth.not-found']), 'show_password_recovery' => true])
+ ->with('pages/login', ['errors' => Collection::make(['auth.not-found'])])
->willReturn($response);
$response->expects($this->once())
->method('redirectTo')