From 23cb23b852eeddd2a402a856aeb7a97df4894fac Mon Sep 17 00:00:00 2001 From: Frank Yung-Fong Tang <41213225+FrankYFTang@users.noreply.github.com> Date: Thu, 17 Jan 2019 11:02:16 -0800 Subject: [PATCH] Move localeMatcher before type and style (#2010) Sync with https://github.com/tc39/proposal-intl-list-format/pull/36 --- .../ListFormat/constructor/constructor/options-order.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/intl402/ListFormat/constructor/constructor/options-order.js b/test/intl402/ListFormat/constructor/constructor/options-order.js index 1e7f6e2655..55486d2234 100644 --- a/test/intl402/ListFormat/constructor/constructor/options-order.js +++ b/test/intl402/ListFormat/constructor/constructor/options-order.js @@ -48,10 +48,10 @@ new Intl.ListFormat([], { }); assert.compareArray(callOrder, [ + "localeMatcher", + "localeMatcher toString", "type", "type toString", "style", "style toString", - "localeMatcher", - "localeMatcher toString", ]);