Fix decimal points for SEK, HUF and CZK currencies (#37834)

This commit is contained in:
Barry Hughes 2023-04-19 10:30:59 -07:00 committed by GitHub
commit 4cfb41e7e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 9 deletions

View File

@ -0,0 +1,4 @@
Significance: patch
Type: fix
Fix decimal points for SEK, HUF and CZK currencies

View File

@ -864,7 +864,7 @@ return array(
'currency_pos' => 'right_space',
'thousand_sep' => ' ',
'decimal_sep' => ',',
'num_decimals' => 0,
'num_decimals' => 2,
'weight_unit' => 'kg',
'dimension_unit' => 'cm',
'direction' => 'ltr',
@ -1568,7 +1568,7 @@ return array(
'currency_pos' => 'right_space',
'thousand_sep' => ' ',
'decimal_sep' => ',',
'num_decimals' => 0,
'num_decimals' => 2,
'weight_unit' => 'kg',
'dimension_unit' => 'cm',
'direction' => 'ltr',
@ -3136,7 +3136,7 @@ return array(
'currency_pos' => 'right_space',
'thousand_sep' => ' ',
'decimal_sep' => ',',
'num_decimals' => 0,
'num_decimals' => 2,
'weight_unit' => 'kg',
'dimension_unit' => 'cm',
'direction' => 'ltr',

View File

@ -1555,7 +1555,7 @@ test.describe('Data API tests', () => {
"currency_pos": "right_space",
"decimal_sep": ",",
"dimension_unit": "cm",
"num_decimals": 0,
"num_decimals": 2,
"thousand_sep": " ",
"weight_unit": "kg",
"states": []
@ -1711,7 +1711,7 @@ test.describe('Data API tests', () => {
"currency_pos": "right_space",
"decimal_sep": ",",
"dimension_unit": "cm",
"num_decimals": 0,
"num_decimals": 2,
"thousand_sep": " ",
"weight_unit": "kg",
"states": expect.arrayContaining([])
@ -1975,7 +1975,7 @@ test.describe('Data API tests', () => {
"currency_pos": "right_space",
"decimal_sep": ",",
"dimension_unit": "cm",
"num_decimals": 0,
"num_decimals": 2,
"thousand_sep": " ",
"weight_unit": "kg",
"states": []
@ -3194,7 +3194,7 @@ test.describe('Data API tests', () => {
"currency_pos": "right_space",
"decimal_sep": ",",
"dimension_unit": "cm",
"num_decimals": 0,
"num_decimals": 2,
"thousand_sep": " ",
"weight_unit": "kg",
"states": []
@ -3350,7 +3350,7 @@ test.describe('Data API tests', () => {
"currency_pos": "right_space",
"decimal_sep": ",",
"dimension_unit": "cm",
"num_decimals": 0,
"num_decimals": 2,
"thousand_sep": " ",
"weight_unit": "kg",
"states": expect.arrayContaining([])
@ -3614,7 +3614,7 @@ test.describe('Data API tests', () => {
"currency_pos": "right_space",
"decimal_sep": ",",
"dimension_unit": "cm",
"num_decimals": 0,
"num_decimals": 2,
"thousand_sep": " ",
"weight_unit": "kg",
"states": []