Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Jan 8, 2024
1 parent 808d1ba commit e561ced
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Http/Controllers/Auth/NewPasswordControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand Down

0 comments on commit e561ced

Please sign in to comment.