From 15f46b755aa57189ebf034648b93c23403b04348 Mon Sep 17 00:00:00 2001 From: Sophie Kirschner Date: Fri, 9 Oct 2020 10:51:36 +0300 Subject: [PATCH] Fix eslint failure in test/partial-test.js The linter enforces 'single quotes' but two strings in this test file were written using "double quotes". This issue was causing tests to fail. --- test/partial-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/partial-test.js b/test/partial-test.js index a1d629f..54d62b5 100644 --- a/test/partial-test.js +++ b/test/partial-test.js @@ -159,7 +159,7 @@ describe('Partials spec', function () { }); it('Nested partials should support custom delimiters.', function () { - var tags = ["[[", "]]"]; + var tags = ['[[', ']]']; var template = '[[> level1 ]]'; var partials = { level1: 'partial 1\n[[> level2]]',