From 5ee4e0d60916fdc5dc1cf0f859a31f7a02071399 Mon Sep 17 00:00:00 2001 From: Frank Yung-Fong Tang Date: Thu, 6 Jan 2022 11:20:17 -0800 Subject: [PATCH] change to minimumFractionDigits:1 --- .../prototype/format/format-rounding-increment-50.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/intl402/NumberFormat/prototype/format/format-rounding-increment-50.js b/test/intl402/NumberFormat/prototype/format/format-rounding-increment-50.js index 31a8ee220b..e527372331 100644 --- a/test/intl402/NumberFormat/prototype/format/format-rounding-increment-50.js +++ b/test/intl402/NumberFormat/prototype/format/format-rounding-increment-50.js @@ -15,13 +15,13 @@ var numberingSystems = ['arab', 'latn', 'thai', 'hanidec']; testNumberFormat( locales, numberingSystems, - {roundingIncrement: 50, maximumFractionDigits: 2}, + {roundingIncrement: 50, maximumFractionDigits: 2, 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', } );