From e739ad24fffbec7a6f0aa0f16c7089509e4ffd3d Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 12 Sep 2023 07:55:02 +1000 Subject: [PATCH] Fixes for tests --- tests/Feature/QuoteTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Feature/QuoteTest.php b/tests/Feature/QuoteTest.php index 957286739fb0..e32f10f8824f 100644 --- a/tests/Feature/QuoteTest.php +++ b/tests/Feature/QuoteTest.php @@ -74,19 +74,19 @@ class QuoteTest extends TestCase 'line_items' =>[ [ 'type_id' => 2, - 'unit_cost' => 200, + 'cost' => 200, 'quantity' => 2, 'notes' => 'Test200', ], [ 'type_id' => 2, - 'unit_cost' => 100, + 'cost' => 100, 'quantity' => 1, 'notes' => 'Test100', ], [ 'type_id' => 1, - 'unit_cost' => 10, + 'cost' => 10, 'quantity' => 1, 'notes' => 'Test', ],