Skip to content

Commit

Permalink
Fix eslint failure in test/partial-test.js
Browse files Browse the repository at this point in the history
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
Original file line number Diff line number Diff line change
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.