From d01b8ecad62c03483135173aab7be147e6bed63c Mon Sep 17 00:00:00 2001 From: Inani El Houssain Date: Mon, 31 May 2021 15:14:39 +0100 Subject: [PATCH] Update IgnitionEnabledTest.php --- tests/Http/Middleware/IgnitionEnabledTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);