瀏覽代碼

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


Loading…
取消
儲存