From d8aa2e4ef7ac717c36421fbd1576ff708658f58c Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Thu, 18 Apr 2024 12:24:14 -0400 Subject: [PATCH] Update NumberFormat.prototype.useGrouping test for CLDR 45 In CLDR 45, in the en-IN locale, the compact thousands symbol changed from 'T' to 'K' after a survey was conducted in India: https://github.com/unicode-org/cldr/commit/b8d447297556ee01575da2b5b710554af34b3482 --- .../prototype/format/useGrouping-extended-en-IN.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/intl402/NumberFormat/prototype/format/useGrouping-extended-en-IN.js b/test/intl402/NumberFormat/prototype/format/useGrouping-extended-en-IN.js index 2e19ff789f..1b0b859e03 100644 --- a/test/intl402/NumberFormat/prototype/format/useGrouping-extended-en-IN.js +++ b/test/intl402/NumberFormat/prototype/format/useGrouping-extended-en-IN.js @@ -28,6 +28,6 @@ assert.sameValue(nf.format(100000), '1,00,000', '"min2"'); nf = new Intl.NumberFormat('en-IN', {notation: 'compact'}); assert.sameValue(nf.format(100), '100', 'notation: "compact"'); -assert.sameValue(nf.format(1000), '1T', 'notation: "compact"'); -assert.sameValue(nf.format(10000), '10T', 'notation: "compact"'); +assert.sameValue(nf.format(1000), '1K', 'notation: "compact"'); +assert.sameValue(nf.format(10000), '10K', 'notation: "compact"'); assert.sameValue(nf.format(100000), '1L', 'notation: "compact"');