mirror of https://github.com/tc39/test262.git
Correct expected value for Intl.Locale 'caseFirst'
An empty string is expected with the current proposal text.
This commit is contained in:
parent
8b725e3957
commit
50331bd641
|
@ -59,7 +59,7 @@ assert.sameValue(loc.calendar, "gregory");
|
|||
assert.sameValue(loc.collation, "phonebk");
|
||||
assert.sameValue(loc.hourCycle, "h23");
|
||||
if ("caseFirst" in loc) {
|
||||
assert.sameValue(loc.caseFirst, "true");
|
||||
assert.sameValue(loc.caseFirst, "");
|
||||
}
|
||||
if ("numeric" in loc) {
|
||||
assert.sameValue(loc.numeric, false);
|
||||
|
|
Loading…
Reference in New Issue