Fix Intl.PluralRules.selectRange test

en-US's Intl.PluralRules.selectRange(102, 201) is "other", not "few".
This commit is contained in:
Yusuke Suzuki 2022-01-03 00:10:22 -08:00 committed by Rick Waldron
parent 56a4cab76c
commit 6804e59f9f
1 changed files with 1 additions and 1 deletions

View File

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