From 78a69329d4f0cbc2895391a09cb7a7b9bb93d95c Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 1 Feb 2023 10:49:46 +1100 Subject: [PATCH] Minor fixes for tests --- tests/Feature/BaseApiTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/BaseApiTest.php b/tests/Feature/BaseApiTest.php index cd326b66b0..3f3c219ab3 100644 --- a/tests/Feature/BaseApiTest.php +++ b/tests/Feature/BaseApiTest.php @@ -589,7 +589,7 @@ class BaseApiTest extends TestCase 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->low_token, ])->get('/api/v1/client_gateway_tokens/') - ->assertStatus(401); + ->assertStatus(403); }