mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
style: fix lint
This commit is contained in:
@@ -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 () {
|
||||
|
||||
Reference in New Issue
Block a user