From e9946587b9af0ab47ea01bc55e6a84c11b9856bf Mon Sep 17 00:00:00 2001 From: Ujjwal Sharma <usharma1998@gmail.com> Date: Sat, 29 Sep 2018 07:26:42 +0530 Subject: [PATCH] Update test to include object and symbol --- test/intl402/NumberFormat/constructor-options-toobject.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/intl402/NumberFormat/constructor-options-toobject.js b/test/intl402/NumberFormat/constructor-options-toobject.js index a305512b54..7b1ed4e4be 100644 --- a/test/intl402/NumberFormat/constructor-options-toobject.js +++ b/test/intl402/NumberFormat/constructor-options-toobject.js @@ -15,7 +15,9 @@ info: | const toObjectResults = [ [true, new Boolean(true)], [42, new Number(42)], - ['foo', new String('foo')] + ['foo', new String('foo')], + [{}, {}], + [Symbol(), Object(Symbol())] ]; // Test if ToObject is used to convert primitives to Objects. -- GitLab