From 930b58d2a8dea72e318d20015a4010034f194ba1 Mon Sep 17 00:00:00 2001 From: asmsuechan Date: Wed, 17 May 2017 15:05:05 +0900 Subject: [PATCH] [Lint] Remove semicolons --- tests/lib/markdown-text-helper-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lib/markdown-text-helper-test.js b/tests/lib/markdown-text-helper-test.js index 91a57a59..9077e118 100644 --- a/tests/lib/markdown-text-helper-test.js +++ b/tests/lib/markdown-text-helper-test.js @@ -40,7 +40,7 @@ test(t => { ] testCases.forEach(testCase => { - const [input, expected] = testCase; - t.is(markdown.strip(input), expected, `Test for strip() input: ${input} expected: ${expected}`); + const [input, expected] = testCase + t.is(markdown.strip(input), expected, `Test for strip() input: ${input} expected: ${expected}`) }) })