Correct expected value for Intl.Locale 'caseFirst'

An empty string is expected with the current proposal text.
This commit is contained in:
André Bargull 2019-07-22 02:24:48 -07:00
parent 8b725e3957
commit 50331bd641

View File

@ -59,7 +59,7 @@ assert.sameValue(loc.calendar, "gregory");
assert.sameValue(loc.collation, "phonebk"); assert.sameValue(loc.collation, "phonebk");
assert.sameValue(loc.hourCycle, "h23"); assert.sameValue(loc.hourCycle, "h23");
if ("caseFirst" in loc) { if ("caseFirst" in loc) {
assert.sameValue(loc.caseFirst, "true"); assert.sameValue(loc.caseFirst, "");
} }
if ("numeric" in loc) { if ("numeric" in loc) {
assert.sameValue(loc.numeric, false); assert.sameValue(loc.numeric, false);