mirror of https://github.com/tc39/test262.git
Fix Intl.PluralRules.selectRange test
en-US's Intl.PluralRules.selectRange(102, 201) is "other", not "few".
This commit is contained in:
parent
56a4cab76c
commit
6804e59f9f
|
@ -9,6 +9,6 @@ features: [Intl.NumberFormat-v3]
|
|||
|
||||
const pr = new Intl.PluralRules("en-US");
|
||||
|
||||
assert.sameValue(pr.selectRange(102, 201), "few");
|
||||
assert.sameValue(pr.selectRange(102, 201), "other");
|
||||
assert.sameValue(pr.selectRange(200, 200), "other");
|
||||
|
||||
|
|
Loading…
Reference in New Issue