From a3b0d199f552dbce8cc0a75f8974b10a2a467c48 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Fri, 5 Jan 2024 11:23:42 +1100 Subject: [PATCH] Minor fixes for tets --- tests/Integration/EventTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Integration/EventTest.php b/tests/Integration/EventTest.php index 3bcbbaff5313..d6ca4dce5d76 100644 --- a/tests/Integration/EventTest.php +++ b/tests/Integration/EventTest.php @@ -397,6 +397,7 @@ class EventTest extends TestCase ]; $quote = Quote::find($this->decodePrimaryKey($arr['data']['id'])); + $quote->due_date = now()->addYear(); $quote->status_id = Quote::STATUS_SENT; $quote->save();