From e561ceda4f0438588c96a7b541c14a2d514638b7 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Mon, 8 Jan 2024 23:30:31 +0000 Subject: [PATCH] Apply fixes from StyleCI --- tests/Http/Controllers/Auth/NewPasswordControllerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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',