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', ],