From 1dc09aab0b9d59574a97d5dbe30672adc453fed6 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sun, 21 Jan 2024 14:35:09 +1100 Subject: [PATCH] Fixes for tests --- tests/Feature/InvoiceTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/InvoiceTest.php b/tests/Feature/InvoiceTest.php index 57e8804a7416..d41a23600555 100644 --- a/tests/Feature/InvoiceTest.php +++ b/tests/Feature/InvoiceTest.php @@ -185,7 +185,7 @@ class InvoiceTest extends TestCase $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, - ])->get('/api/v1/invoices?date_range=date,1971-01-01,1971-01-03', ) + ])->get('/api/v1/invoices?date_range=1971-01-01,1971-01-03', ) ->assertStatus(200); $arr = $response->json();