From 8c7e02aa62f8cdf554d3a130b704874fa6d84420 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 26 Sep 2023 07:40:41 +1000 Subject: [PATCH] Fixes for base 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 3fac9d506dc5..1fd22a94acc8 100644 --- a/tests/Feature/BaseApiTest.php +++ b/tests/Feature/BaseApiTest.php @@ -576,7 +576,7 @@ class BaseApiTest extends TestCase $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->low_token, - ])->get('/api/v1/client_gateway_tokens/') + ])->get('/api/v1/client_gateway_tokens') ->assertStatus(403); } }