mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-06 22:21:42 +00:00
Fixed tests to account for issue fixed by #1097
This commit is contained in:
@@ -53,8 +53,9 @@ class AssetAccountIbans implements MapperInterface
|
||||
$list[$accountId] = $account->name;
|
||||
}
|
||||
}
|
||||
$list = array_merge($topList, $list);
|
||||
$list = array_merge([0 => trans('import.map_do_not_map')], $list);
|
||||
$list = $topList + $list;
|
||||
asort($list);
|
||||
$list = [0 => trans('import.map_do_not_map')] + $list;
|
||||
|
||||
return $list;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user