mirror of https://github.com/tc39/test262.git
Update Intl.NumberFormat test with recent reorder of option evaluation
The order of evaluation for "notation" and "roundingIncrement" changed in https://github.com/tc39/proposal-intl-numberformat-v3/commit/a260aa3.
This commit is contained in:
parent
d8bc356d01
commit
e6c6460a5b
|
@ -46,5 +46,5 @@ for (const [value, expected] of values) {
|
|||
assert("roundingIncrement" in resolvedOptions, "has property for value " + value);
|
||||
assert.sameValue(resolvedOptions.roundingIncrement, expected);
|
||||
|
||||
assert.compareArray(callOrder, ["notation", "roundingIncrement"]);
|
||||
assert.compareArray(callOrder, ["roundingIncrement", "notation"]);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue