chore: fix linting

This commit is contained in:
harttle
2019-02-24 05:03:59 +08:00
parent e977669118
commit 3b7351d9a0
3 changed files with 9 additions and 22 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ describe('filter', function () {
it('should render filters with argument', function () {
Filter.register('add', (a, b) => a + b)
expect(new Filter('add', ["2"], false).render(3, scope)).to.equal(5)
expect(new Filter('add', ['2'], false).render(3, scope)).to.equal(5)
})
it('should render filters with multiple arguments', function () {