Przeglądaj źródła

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 lat temu
rodzic
commit
15f46b755a
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      test/partial-test.js

+ 1
- 1
test/partial-test.js Wyświetl plik

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


Ładowanie…
Anuluj
Zapisz