From f7e2d13de11afd951f2f8786a20ad5747ef7fd4b Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 26 Sep 2023 23:17:04 +1000 Subject: [PATCH] Fixes for tests --- tests/Feature/ClassificationTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Feature/ClassificationTest.php b/tests/Feature/ClassificationTest.php index fe9df9600756..5a08c8cfca03 100644 --- a/tests/Feature/ClassificationTest.php +++ b/tests/Feature/ClassificationTest.php @@ -73,7 +73,7 @@ class ClassificationTest extends TestCase public function testValidation2Classification() { - $this->client->classification = 'company'; + $this->client->classification = 'business'; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), @@ -84,7 +84,7 @@ class ClassificationTest extends TestCase $arr = $response->json(); - $this->assertEquals('company', $arr['data']['classification']); + $this->assertEquals('business', $arr['data']['classification']); } public function testValidation3Classification()