diff --git a/tests/Http/Controllers/Auth/NewPasswordControllerTest.php b/tests/Http/Controllers/Auth/NewPasswordControllerTest.php index 25ffec9e4..9a7d5fecc 100644 --- a/tests/Http/Controllers/Auth/NewPasswordControllerTest.php +++ b/tests/Http/Controllers/Auth/NewPasswordControllerTest.php @@ -56,7 +56,7 @@ public function testNewPasswordRequestWillValidateAnInvalidEmail(): void $user = User::factory()->create(); $response = $this->post(route('canvas.reset-password'), [ - 'token' => encrypt($user->id.'|'.Str::random()), + 'token' => encrypt($user->id.'|'.Str::random()), 'email' => 'not-an-email', 'password' => 'password', 'password_confirmation' => 'password', @@ -70,7 +70,7 @@ public function testNewPasswordRequestWillValidateUnconfirmedPasswords(): void $user = User::factory()->create(); $response = $this->post(route('canvas.reset-password'), [ - 'token' => encrypt($user->id.'|'.Str::random()), + 'token' => encrypt($user->id.'|'.Str::random()), 'email' => $user->email, 'password' => 'password', 'password_confirmation' => 'secret',