Skip to content

Commit 54dd306

Browse files
committed
fix: replace round function with route helper in email verification test
1 parent ed948b6 commit 54dd306

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Feature/Auth/EmailVerificationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function test_email_verification_screen_can_be_rendered()
1717
{
1818
$user = User::factory()->unverified()->create();
1919

20-
$response = $this->actingAs($user)->get(round('verification.notice'));
20+
$response = $this->actingAs($user)->get(route('verification.notice'));
2121

2222
$response->assertStatus(200);
2323
}

0 commit comments

Comments
 (0)