Skip to content

Commit 67eb95c

Browse files
pineapplemachinephillipj
authored andcommitted
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.
1 parent eb523bd commit 67eb95c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/partial-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ describe('Partials spec', function () {
159159
});
160160

161161
it('Nested partials should support custom delimiters.', function () {
162-
var tags = ["[[", "]]"];
162+
var tags = ['[[', ']]'];
163163
var template = '[[> level1 ]]';
164164
var partials = {
165165
level1: 'partial 1\n[[> level2]]',

0 commit comments

Comments
 (0)