Laravel Pint fixes
This commit is contained in:
parent
7a58287b34
commit
126bb29ae2
50 changed files with 299 additions and 299 deletions
|
@ -17,7 +17,7 @@ class PlacesTest extends TestCase
|
|||
* Test the `/places` page for OK response.
|
||||
*/
|
||||
#[Test]
|
||||
public function placesPageLoads(): void
|
||||
public function places_page_loads(): void
|
||||
{
|
||||
$response = $this->get('/places');
|
||||
$response->assertStatus(200);
|
||||
|
@ -27,7 +27,7 @@ class PlacesTest extends TestCase
|
|||
* Test a specific place.
|
||||
*/
|
||||
#[Test]
|
||||
public function singlePlacePageLoads(): void
|
||||
public function single_place_page_loads(): void
|
||||
{
|
||||
$place = Place::factory()->create();
|
||||
$response = $this->get($place->uri);
|
||||
|
@ -35,7 +35,7 @@ class PlacesTest extends TestCase
|
|||
}
|
||||
|
||||
#[Test]
|
||||
public function unknownPlaceGives404()
|
||||
public function unknown_place_gives404()
|
||||
{
|
||||
$response = $this->get('/places/unknown');
|
||||
$response->assertNotFound();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue