From 0c8372a2e66595c7a8b9977cc9c145b9ce1df7ac Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Wed, 27 Dec 2023 16:47:30 +0000 Subject: [PATCH] Reverts `assertOk` change (#6303) --- 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 2a4a09eef..8364a84e2 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -14,6 +14,6 @@ class ExampleTest extends TestCase { $response = $this->get('/'); - $response->assertOk(); + $response->assertStatus(200); } }