Skip to content

Commit

Permalink
#21001 - fix unit tests, by passing currency to number formatter, the…
Browse files Browse the repository at this point in the history
…n it behaves as was expected in test.
  • Loading branch information
kdegorski committed Mar 21, 2019
1 parent b96435f commit 8d7b964
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function getPriceFormatDataProvider(): array
return [
['en_US', 'USD', ['decimalSymbol' => '.', 'groupSymbol' => ',']],
['de_DE', 'EUR', ['decimalSymbol' => ',', 'groupSymbol' => '.']],
['de_CH', 'CHF', ['decimalSymbol' => '.', 'groupSymbol' => '']],
['de_CH', 'CHF', ['decimalSymbol' => '.', 'groupSymbol' => '\'']],
['uk_UA', 'UAH', ['decimalSymbol' => ',', 'groupSymbol' => ' ']]
];
}
Expand Down

0 comments on commit 8d7b964

Please sign in to comment.