Skip to content

Commit 1da81eb

Browse files
authored
Apply fixes from StyleCI (#1408)
1 parent 808d1ba commit 1da81eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Http/Controllers/Auth/NewPasswordControllerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function testNewPasswordRequestWillValidateAnInvalidEmail(): void
5656
$user = User::factory()->create();
5757

5858
$response = $this->post(route('canvas.reset-password'), [
59-
'token' => encrypt($user->id.'|'.Str::random()),
59+
'token' => encrypt($user->id.'|'.Str::random()),
6060
'email' => 'not-an-email',
6161
'password' => 'password',
6262
'password_confirmation' => 'password',
@@ -70,7 +70,7 @@ public function testNewPasswordRequestWillValidateUnconfirmedPasswords(): void
7070
$user = User::factory()->create();
7171

7272
$response = $this->post(route('canvas.reset-password'), [
73-
'token' => encrypt($user->id.'|'.Str::random()),
73+
'token' => encrypt($user->id.'|'.Str::random()),
7474
'email' => $user->email,
7575
'password' => 'password',
7676
'password_confirmation' => 'secret',

0 commit comments

Comments
 (0)