mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix for #1938
This commit is contained in:
@@ -174,6 +174,12 @@ class AmountTest extends TestCase
|
||||
'--$1.23' => '1.23',
|
||||
'--63 5212.4440' => '635212.4440',
|
||||
'--,2' => '0.2',
|
||||
|
||||
// Postbank (DE) tests
|
||||
'1.000,00 €' => '1000.00',
|
||||
'120,34 €' => '120.34',
|
||||
'-120,34 €' => '-120.34',
|
||||
'-1.000,00 €' => '-1000.00',
|
||||
];
|
||||
foreach ($values as $value => $expected) {
|
||||
$converter = new Amount;
|
||||
|
||||
Reference in New Issue
Block a user