mirror of https://github.com/tc39/test262.git
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:
parent
ba92881748
commit
d8aa2e4ef7
|
@ -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"');
|
||||
|
|
Loading…
Reference in New Issue