From 54ef0b1bf4704a3a3a23290cbafdbf18938d4f9c Mon Sep 17 00:00:00 2001 From: Frank Yung-Fong Tang Date: Tue, 30 Nov 2021 16:10:15 -0800 Subject: [PATCH] Fix expectation of "compact" notation --- .../prototype/format/useGrouping-extended-en-US.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/intl402/NumberFormat/prototype/format/useGrouping-extended-en-US.js b/test/intl402/NumberFormat/prototype/format/useGrouping-extended-en-US.js index 4c1c5a7e87..5c6c8aaef8 100644 --- a/test/intl402/NumberFormat/prototype/format/useGrouping-extended-en-US.js +++ b/test/intl402/NumberFormat/prototype/format/useGrouping-extended-en-US.js @@ -28,6 +28,6 @@ assert.sameValue(nf.format(100000), '100,000', '"min2"'); nf = new Intl.NumberFormat('en-US', {notation: 'compact'}); assert.sameValue(nf.format(100), '100', 'notation: "compact"'); -assert.sameValue(nf.format(1000), '1000', 'notation: "compact"'); -assert.sameValue(nf.format(10000), '10,000', 'notation: "compact"'); -assert.sameValue(nf.format(100000), '100,000', 'notation: "compact"'); +assert.sameValue(nf.format(1000), '1K', 'notation: "compact"'); +assert.sameValue(nf.format(10000), '10K', 'notation: "compact"'); +assert.sameValue(nf.format(100000), '100K', 'notation: "compact"');