From b88b1065eefd5d7a1dc32c562b178b52e3cac8b1 Mon Sep 17 00:00:00 2001 From: asmsuechan Date: Wed, 17 May 2017 15:04:43 +0900 Subject: [PATCH] [Lint] Fix double quatations to single quatations --- tests/lib/markdown-text-helper-test.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/lib/markdown-text-helper-test.js b/tests/lib/markdown-text-helper-test.js index 2b285140..91a57a59 100644 --- a/tests/lib/markdown-text-helper-test.js +++ b/tests/lib/markdown-text-helper-test.js @@ -15,15 +15,15 @@ test(t => { [' 1. ', ' '], [' 2. ', ' '], [' 10. ', ' '], - ["\t- ", "\t"], + ['\t- ', '\t'], ['- ', ''], // Header with using line - ["\n==", "\n"], - ["\n===", "\n"], - ["test\n===", "test\n"], + ['\n==', '\n'], + ['\n===', '\n'], + ['test\n===', 'test\n'], // Code block - ["```test\n", ''], - ["```test\nhoge", 'hoge'], + ['```test\n', ''], + ['```test\nhoge', 'hoge'], // HTML tag ['<>', ''], ['', 'test'],