fix case for roudingIncrement: 5000

This commit is contained in:
Frank Yung-Fong Tang 2022-01-06 11:23:31 -08:00 committed by Rick Waldron
parent 4cc44841f6
commit a665b5f3a2
1 changed files with 4 additions and 4 deletions

View File

@ -15,13 +15,13 @@ var numberingSystems = ['arab', 'latn', 'thai', 'hanidec'];
testNumberFormat(
locales,
numberingSystems,
{roundingIncrement: 5000, maximumFractionDigits: 4},
{roundingIncrement: 5000, maximumFractionDigits: 4, minimumFractionDigits: 1},
{
'1.500': '1.5',
'1.625': '1.5',
'1.750': '2',
'1.875': '2',
'2.000': '2',
'1.750': '2.0',
'1.875': '2.0',
'2.000': '2.0',
}
);