Skip to content

Commit

Permalink
Merge branch 'bump' into laravel-11.x
Browse files Browse the repository at this point in the history
  • Loading branch information
irsyadadl committed Apr 26, 2024
2 parents 641bc73 + 933ef8c commit 6853b2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Feature/Auth/EmailVerificationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

Event::assertDispatched(Verified::class);
expect($user->fresh()->hasVerifiedEmail())->toBeTrue();
$response->assertRedirect(route('dashboard', absolute: false).'?verified=1');
$response->assertRedirect(route('dashboard', absolute: false) . '?verified=1');
});

test('email is not verified with invalid hash', function () {
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Auth/PasswordResetTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
$this->post('/forgot-password', ['email' => $user->email]);

Notification::assertSentTo($user, ResetPassword::class, function ($notification) {
$response = $this->get('/reset-password/'.$notification->token);
$response = $this->get('/reset-password/' . $notification->token);

$response->assertStatus(200);

Expand Down

0 comments on commit 6853b2e

Please sign in to comment.