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:
Timothy Flynn 2022-11-28 12:19:34 -05:00 committed by Ms2ger
parent d8bc356d01
commit e6c6460a5b
1 changed files with 1 additions and 1 deletions

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