From 4db4f6094d4f4ef381dab1f074927555f61b1b4a Mon Sep 17 00:00:00 2001 From: glovetleong Date: Sat, 30 Jul 2022 09:56:30 +0800 Subject: [PATCH] unit test bug --- 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 8fbf3706..6d9e8a75 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -13,7 +13,7 @@ class ExampleTest extends TestCase */ public function testBasicTest() { - $response = $this->get('/'); + $response = $this->get('/swagger'); $response->assertStatus(200); }