From 0866789361094b24e06b1788ec16fa16afb4a3d6 Mon Sep 17 00:00:00 2001
From: Frank Tang <ftang@chromium.org>
Date: Fri, 5 Oct 2018 18:43:50 -0700
Subject: [PATCH] numeric should be a boolean not a string

---
 test/intl402/Locale/constructor-options-numeric-valid.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/intl402/Locale/constructor-options-numeric-valid.js b/test/intl402/Locale/constructor-options-numeric-valid.js
index 1f3979d83c..77ae60af36 100644
--- a/test/intl402/Locale/constructor-options-numeric-valid.js
+++ b/test/intl402/Locale/constructor-options-numeric-valid.js
@@ -62,7 +62,7 @@ for (const [numeric, expected] of validNumericOptions) {
 
   assert.sameValue(
     new Intl.Locale('en-u-kf-lower', {numeric}).numeric,
-    String(expected),
+    expected,
     `new Intl.Locale("en-u-kf-lower", {numeric: ${numeric}}).numeric equals "${expected}"`
   );
 }
-- 
GitLab