mirror of https://github.com/tc39/test262.git
fix en-IN expectation
This commit is contained in:
parent
54ef0b1bf4
commit
ef697bbc6d
|
@ -23,11 +23,11 @@ nf = new Intl.NumberFormat('en-IN', {useGrouping: 'min2'});
|
||||||
assert.sameValue(nf.format(100), '100', '"min2"');
|
assert.sameValue(nf.format(100), '100', '"min2"');
|
||||||
assert.sameValue(nf.format(1000), '1000', '"min2"');
|
assert.sameValue(nf.format(1000), '1000', '"min2"');
|
||||||
assert.sameValue(nf.format(10000), '10,000', '"min2"');
|
assert.sameValue(nf.format(10000), '10,000', '"min2"');
|
||||||
assert.sameValue(nf.format(100000), '100,000', '"min2"');
|
assert.sameValue(nf.format(100000), '1,00,000', '"min2"');
|
||||||
|
|
||||||
nf = new Intl.NumberFormat('en-IN', {notation: 'compact'});
|
nf = new Intl.NumberFormat('en-IN', {notation: 'compact'});
|
||||||
|
|
||||||
assert.sameValue(nf.format(100), '100', 'notation: "compact"');
|
assert.sameValue(nf.format(100), '100', 'notation: "compact"');
|
||||||
assert.sameValue(nf.format(1000), '1000', 'notation: "compact"');
|
assert.sameValue(nf.format(1000), '1T', 'notation: "compact"');
|
||||||
assert.sameValue(nf.format(10000), '10,000', 'notation: "compact"');
|
assert.sameValue(nf.format(10000), '10T', 'notation: "compact"');
|
||||||
assert.sameValue(nf.format(100000), '100,000', 'notation: "compact"');
|
assert.sameValue(nf.format(100000), '1L', 'notation: "compact"');
|
||||||
|
|
Loading…
Reference in New Issue