From f6e71e7e7632d085b3bf55aa20a31eaa8b42f215 Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Fri, 5 Mar 2021 09:04:32 -0700 Subject: [PATCH] tests(integration): fix EggControllerTest --- tests/Integration/Api/Application/Eggs/EggControllerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Integration/Api/Application/Eggs/EggControllerTest.php b/tests/Integration/Api/Application/Eggs/EggControllerTest.php index a25549383..05c364d0e 100644 --- a/tests/Integration/Api/Application/Eggs/EggControllerTest.php +++ b/tests/Integration/Api/Application/Eggs/EggControllerTest.php @@ -114,7 +114,7 @@ class EggControllerTest extends ApplicationApiIntegrationTestCase */ public function testGetMissingEgg() { - $response = $this->getJson('/api/application/nests/eggs/nil'); + $response = $this->getJson('/api/application/eggs/nil'); $this->assertNotFoundJson($response); } @@ -139,7 +139,7 @@ class EggControllerTest extends ApplicationApiIntegrationTestCase { $this->createNewDefaultApiKey($this->getApiUser(), ['r_eggs' => 0]); - $response = $this->getJson('/api/application/nests/eggs/nil'); + $response = $this->getJson('/api/application/eggs/nil'); $this->assertAccessDeniedJson($response); } }