Fixes for tests

This commit is contained in:
David Bomba 2023-09-12 07:55:02 +10:00
parent d5555d1d39
commit e739ad24ff

View File

@ -74,19 +74,19 @@ class QuoteTest extends TestCase
'line_items' =>[ 'line_items' =>[
[ [
'type_id' => 2, 'type_id' => 2,
'unit_cost' => 200, 'cost' => 200,
'quantity' => 2, 'quantity' => 2,
'notes' => 'Test200', 'notes' => 'Test200',
], ],
[ [
'type_id' => 2, 'type_id' => 2,
'unit_cost' => 100, 'cost' => 100,
'quantity' => 1, 'quantity' => 1,
'notes' => 'Test100', 'notes' => 'Test100',
], ],
[ [
'type_id' => 1, 'type_id' => 1,
'unit_cost' => 10, 'cost' => 10,
'quantity' => 1, 'quantity' => 1,
'notes' => 'Test', 'notes' => 'Test',
], ],