intl: fix mistyped test for array-like objects

This commit is contained in:
Ujjwal Sharma 2018-10-10 02:42:51 +05:30 committed by Rick Waldron
parent 21f6a86a6d
commit 9dc33cc5b4
1 changed files with 1 additions and 1 deletions

View File

@ -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();