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:
Timothy Flynn 2023-01-30 11:11:20 -05:00 committed by Philip Chimento
parent d03f11a81b
commit f5e2214b30

View File

@ -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, ["roundingIncrement", "notation"]);
assert.compareArray(callOrder, ["notation", "roundingIncrement"]);
}