We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2885afe commit a738a48Copy full SHA for a738a48
tests/Browser/Auth/PasswordResetTest.php
@@ -35,7 +35,7 @@
35
36
Notification::fake();
37
38
- Password::sendResetLink($user->email);
+ Password::sendResetLink(['email' => $user->email]);
39
40
Notification::assertSentTo($user, ResetPassword::class, function ($notification) {
41
visit(route('password.reset', $notification->token))
@@ -51,7 +51,7 @@
51
52
53
54
- post(route('password.email'), ['email' => $user->email]);
55
56
Notification::assertSentTo($user, ResetPassword::class, function ($notification) use ($user) {
57
visit(route('password.reset', ['token' => $notification->token, 'email' => $user->email]))
0 commit comments