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

View File

@ -14,6 +14,6 @@ class ExampleTest extends TestCase
{
$response = $this->get('/');
$response->assertStatus(200);
$response->assertOk();
}
}