From 919ea4ceb2f558b127daeed5ec34a68cc7082bc1 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 28 Dec 2020 17:06:01 -0600 Subject: [PATCH] update tests --- tests/Feature/ExampleTest.php | 2 +- tests/Unit/ExampleTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index cdb511193..78ccc21f4 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -12,7 +12,7 @@ class ExampleTest extends TestCase * * @return void */ - public function testBasicTest() + public function test_the_application_returns_a_successful_response() { $response = $this->get('/'); diff --git a/tests/Unit/ExampleTest.php b/tests/Unit/ExampleTest.php index 358cfc883..e5c5fef7a 100644 --- a/tests/Unit/ExampleTest.php +++ b/tests/Unit/ExampleTest.php @@ -11,7 +11,7 @@ class ExampleTest extends TestCase * * @return void */ - public function testBasicTest() + public function test_that_true_is_true() { $this->assertTrue(true); }