mirror of
https://github.com/tc39/test262.git
synced 2025-07-21 21:14:45 +02:00
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("roundingIncrement" in resolvedOptions, "has property for value " + value);
|
||||||
assert.sameValue(resolvedOptions.roundingIncrement, expected);
|
assert.sameValue(resolvedOptions.roundingIncrement, expected);
|
||||||
|
|
||||||
assert.compareArray(callOrder, ["notation", "roundingIncrement"]);
|
assert.compareArray(callOrder, ["roundingIncrement", "notation"]);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user