Use `assertOk()` instead of `assertStatus(200)` (#6287)

This commit is contained in:
TENIOS 2023-12-11 15:17:19 +07:00 committed by GitHub
parent e57d15ac8f
commit 3142d3feb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@ public function test_the_application_returns_a_successful_response(): void
{
$response = $this->get('/');
$response->assertStatus(200);
$response->assertOk();
}
}