Browse Source

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.
tags/v4.1.0
Sophie Kirschner Phillip Johnsen 4 years ago
parent
commit
67eb95cf5f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      test/partial-test.js

+ 1
- 1
test/partial-test.js View File

@@ -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]]',


Loading…
Cancel
Save