style: fix lint

This commit is contained in:
Harttle
2022-02-20 15:56:23 +08:00
parent 31aa4ec318
commit 200f6648aa
+2 -2
View File
@@ -139,8 +139,8 @@ describe('filters/array', function () {
return test(tpl, { arr: [b, c, a, c] }, 'Alice Bob Carol Carol')
})
it('should not change the original array', () => {
const arr = ["one", "two", "three", "four", "five"]
return test("{{arr | sort}} {{arr}}", { arr }, 'fivefouronethreetwo onetwothreefourfive')
const arr = ['one', 'two', 'three', 'four', 'five']
return test('{{arr | sort}} {{arr}}', { arr }, 'fivefouronethreetwo onetwothreefourfive')
})
})
describe('uniq', function () {