Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
pineapplemachine authored and phillipj committed Oct 22, 2020
1 parent eb523bd commit 67eb95c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/partial-test.js
Expand Up @@ -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]]',
Expand Down

0 comments on commit 67eb95c

Please sign in to comment.