mirror of
https://github.com/tc39/test262.git
synced 2025-07-20 20:44:43 +02:00
Swap call order of NumberFormat's notation and roundingIncrement options
The order in which these options are read was changed in commit:
29acfc6c3f
This commit is contained in:
parent
d03f11a81b
commit
f5e2214b30
@ -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, ["roundingIncrement", "notation"]);
|
assert.compareArray(callOrder, ["notation", "roundingIncrement"]);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user