From f8e0bf6751c65e5dfa17eae0d036999153f82736 Mon Sep 17 00:00:00 2001 From: Ujjwal Sharma Date: Thu, 4 Oct 2018 19:26:24 +0530 Subject: [PATCH] intl: fix dicey test case --- test/intl402/NumberFormat/constructor-locales-get-tostring.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/intl402/NumberFormat/constructor-locales-get-tostring.js b/test/intl402/NumberFormat/constructor-locales-get-tostring.js index 587eb5f042..a8e3f4898a 100644 --- a/test/intl402/NumberFormat/constructor-locales-get-tostring.js +++ b/test/intl402/NumberFormat/constructor-locales-get-tostring.js @@ -38,4 +38,4 @@ const proxyLocales = new Proxy(locales, handlers); const nf = new Intl.NumberFormat(proxyLocales); -actualLookups.forEach(lookup => assert(expectedLookups.indexOf(lookup) != -1)); +expectedLookups.forEach(lookup => assert(actualLookups.indexOf(lookup) != -1));