Переглянути джерело

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.
pull/764/head
Sophie Kirschner 5 роки тому
джерело
коміт
15f46b755a
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      test/partial-test.js

+ 1
- 1
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]]',


Завантаження…
Відмінити
Зберегти