From b42ae9023b29d0cd5b8ffb9ddfac33868b233065 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 6 Jan 2022 14:53:03 +1100 Subject: [PATCH] Minor fixes for tests --- tests/Feature/ClientDeletedInvoiceCreationTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Feature/ClientDeletedInvoiceCreationTest.php b/tests/Feature/ClientDeletedInvoiceCreationTest.php index 09429203658b..3ec20cb30f10 100644 --- a/tests/Feature/ClientDeletedInvoiceCreationTest.php +++ b/tests/Feature/ClientDeletedInvoiceCreationTest.php @@ -51,7 +51,7 @@ class ClientDeletedInvoiceCreationTest extends TestCase 'number' => 'dude', ]; - $response = $this->withHeaders([ + $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/invoices/', $data) @@ -66,7 +66,7 @@ class ClientDeletedInvoiceCreationTest extends TestCase 'number' => 'dude2', ]; - $response = $this->withHeaders([ + $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/invoices/', $data)