Fix tests

This commit is contained in:
Joshua Dwire 2021-02-20 11:24:08 -05:00
parent 1b19b3d0a9
commit aeedd5c9d9

View File

@ -249,7 +249,7 @@ class ImportCsvTest extends TestCase
$data = [
'hash' => $hash,
'column_map' => [ 'client' => $column_map ],
'column_map' => [ 'client' => [ 'mapping' => $column_map ] ],
'skip_header' => true,
'import_type' => 'csv',
];
@ -282,7 +282,7 @@ class ImportCsvTest extends TestCase
$data = [
'hash' => $hash,
'column_map' => [ 'invoice' => $column_map ],
'column_map' => [ 'invoice' => [ 'mapping' => $column_map ] ],
'skip_header' => true,
'import_type' => 'csv',
];