Use `assertOk()` instead of `assertStatus(200)` (#6287)
This commit is contained in:
parent
e57d15ac8f
commit
3142d3feb9
|
@ -14,6 +14,6 @@ public function test_the_application_returns_a_successful_response(): void
|
||||||
{
|
{
|
||||||
$response = $this->get('/');
|
$response = $this->get('/');
|
||||||
|
|
||||||
$response->assertStatus(200);
|
$response->assertOk();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue