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:

b8d4472975
This commit is contained in:
Timothy Flynn 2024-04-18 12:24:14 -04:00 committed by Philip Chimento
parent ba92881748
commit d8aa2e4ef7
1 changed files with 2 additions and 2 deletions

View File

@ -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"');