From fa74b545b6510e97cf67e03ac221f31dd4e5e761 Mon Sep 17 00:00:00 2001 From: hobsRKM Date: Sat, 4 May 2024 19:29:37 +0530 Subject: [PATCH] Update ExampleTest.php --- tests/Feature/ExampleTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index 8364a84..9f86575 100755 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -12,7 +12,7 @@ class ExampleTest extends TestCase */ public function test_the_application_returns_a_successful_response(): void { - $response = $this->get('/'); + $response = $this->withoutMiddleware()->get('/'); $response->assertStatus(200); }