diff --git a/tests/Http/Middleware/IgnitionEnabledTest.php b/tests/Http/Middleware/IgnitionEnabledTest.php index da961974..bf7b3845 100644 --- a/tests/Http/Middleware/IgnitionEnabledTest.php +++ b/tests/Http/Middleware/IgnitionEnabledTest.php @@ -9,7 +9,7 @@ class IgnitionEnabledTest extends TestCase { /** @test */ - public function it_returns_404_with_debug_mode_disabled() + public function it_returns_404_when_debug_mode_disabled() { config()->set('app.debug', false); @@ -19,7 +19,7 @@ public function it_returns_404_with_debug_mode_disabled() } /** @test */ - public function it_returns_ok_with_debug_mode_enabled() + public function it_returns_ok_when_debug_mode_enabled() { config()->set('app.debug', true);