From f5e2214b3042c0d3f8a1a29f7cf496572ca8bccd Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Mon, 30 Jan 2023 11:11:20 -0500 Subject: [PATCH] Swap call order of NumberFormat's notation and roundingIncrement options The order in which these options are read was changed in commit: https://github.com/tc39/proposal-intl-numberformat-v3/commit/29acfc6c3fc9f9183f83ef49e74da747134d63c8 --- test/intl402/NumberFormat/constructor-roundingIncrement.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/intl402/NumberFormat/constructor-roundingIncrement.js b/test/intl402/NumberFormat/constructor-roundingIncrement.js index 4bb4e24ea3..95a4bd5ce2 100644 --- a/test/intl402/NumberFormat/constructor-roundingIncrement.js +++ b/test/intl402/NumberFormat/constructor-roundingIncrement.js @@ -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"]); }