From 9dc33cc5b4832e37bee8cd64614c5333ce30cf3c Mon Sep 17 00:00:00 2001 From: Ujjwal Sharma Date: Wed, 10 Oct 2018 02:42:51 +0530 Subject: [PATCH] intl: fix mistyped test for array-like objects --- test/intl402/NumberFormat/constructor-locales-arraylike.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/intl402/NumberFormat/constructor-locales-arraylike.js b/test/intl402/NumberFormat/constructor-locales-arraylike.js index 6ed4a3fd2f..d065d26c4f 100644 --- a/test/intl402/NumberFormat/constructor-locales-arraylike.js +++ b/test/intl402/NumberFormat/constructor-locales-arraylike.js @@ -10,7 +10,7 @@ description: > const actual = Intl.NumberFormat({ length: 1, - 1: 'en-US' + 0: 'en-US' }).resolvedOptions(); const expected = Intl.NumberFormat(['en-US']).resolvedOptions();