ソースを参照

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


読み込み中…
キャンセル
保存