From e39604fa41b1ad0effdcf586e4d554ff2d8c3eb7 Mon Sep 17 00:00:00 2001 From: Timothy Gu Date: Thu, 31 Jan 2019 09:49:27 -0800 Subject: [PATCH] Fix missing ) (#2059) --- .../constructor/constructor/options-granularity-valid.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/intl402/Segmenter/constructor/constructor/options-granularity-valid.js b/test/intl402/Segmenter/constructor/constructor/options-granularity-valid.js index 7f731680a3..dffc77eb62 100644 --- a/test/intl402/Segmenter/constructor/constructor/options-granularity-valid.js +++ b/test/intl402/Segmenter/constructor/constructor/options-granularity-valid.js @@ -26,4 +26,4 @@ for (const [granularity, expected] of validOptions) { assert.sameValue(resolvedOptions.granularity, expected); } -assert.throws(RangeError, () => new Intl.Segmenter([], {granularity: "line"}); +assert.throws(RangeError, () => new Intl.Segmenter([], {granularity: "line"}));