mirror of https://github.com/tc39/test262.git
numeric should be a boolean not a string
This commit is contained in:
parent
5072e841be
commit
0866789361
|
@ -62,7 +62,7 @@ for (const [numeric, expected] of validNumericOptions) {
|
||||||
|
|
||||||
assert.sameValue(
|
assert.sameValue(
|
||||||
new Intl.Locale('en-u-kf-lower', {numeric}).numeric,
|
new Intl.Locale('en-u-kf-lower', {numeric}).numeric,
|
||||||
String(expected),
|
expected,
|
||||||
`new Intl.Locale("en-u-kf-lower", {numeric: ${numeric}}).numeric equals "${expected}"`
|
`new Intl.Locale("en-u-kf-lower", {numeric: ${numeric}}).numeric equals "${expected}"`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue