File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/Http/Controllers/Auth Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ public function testNewPasswordRequestWillValidateAnInvalidEmail(): void
56
56
$ user = User::factory ()->create ();
57
57
58
58
$ response = $ this ->post (route ('canvas.reset-password ' ), [
59
- 'token ' => encrypt ($ user ->id .'| ' .Str::random ()),
59
+ 'token ' => encrypt ($ user ->id .'| ' .Str::random ()),
60
60
'email ' => 'not-an-email ' ,
61
61
'password ' => 'password ' ,
62
62
'password_confirmation ' => 'password ' ,
@@ -70,7 +70,7 @@ public function testNewPasswordRequestWillValidateUnconfirmedPasswords(): void
70
70
$ user = User::factory ()->create ();
71
71
72
72
$ response = $ this ->post (route ('canvas.reset-password ' ), [
73
- 'token ' => encrypt ($ user ->id .'| ' .Str::random ()),
73
+ 'token ' => encrypt ($ user ->id .'| ' .Str::random ()),
74
74
'email ' => $ user ->email ,
75
75
'password ' => 'password ' ,
76
76
'password_confirmation ' => 'secret ' ,
You can’t perform that action at this time.
0 commit comments