Fixed tests to account for issue fixed by #1097

This commit is contained in:
James Cole
2018-01-06 07:33:30 +01:00
parent ed0e14aee5
commit 7fa937e80b
18 changed files with 66 additions and 53 deletions

View File

@@ -42,8 +42,9 @@ class TransactionCurrencies implements MapperInterface
$currencyId = intval($currency->id);
$list[$currencyId] = $currency->name . ' (' . $currency->code . ')';
}
asort($list);
$list = array_merge([0 => trans('import.map_do_not_map')], $list);
$list = [0 => trans('import.map_do_not_map')] + $list;
return $list;
}