Fix missing ) (#2059)

This commit is contained in:
Timothy Gu 2019-01-31 09:49:27 -08:00 committed by Leo Balter
parent 38b1ce107b
commit e39604fa41
1 changed files with 1 additions and 1 deletions

View File

@ -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"}));