Skip to content
Snippets Groups Projects
Commit 9dc33cc5 authored by Ujjwal Sharma's avatar Ujjwal Sharma Committed by Rick Waldron
Browse files

intl: fix mistyped test for array-like objects

parent 21f6a86a
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ description: > ...@@ -10,7 +10,7 @@ description: >
const actual = Intl.NumberFormat({ const actual = Intl.NumberFormat({
length: 1, length: 1,
1: 'en-US' 0: 'en-US'
}).resolvedOptions(); }).resolvedOptions();
const expected = Intl.NumberFormat(['en-US']).resolvedOptions(); const expected = Intl.NumberFormat(['en-US']).resolvedOptions();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment