From af709965c59c2323b3e634a25f1e0ed44d4f3f77 Mon Sep 17 00:00:00 2001 From: Timo Hocker Date: Fri, 26 Jun 2020 16:12:16 +0200 Subject: [PATCH] linting --- test/index.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/test/index.js b/test/index.js index 6789462..78c2cab 100644 --- a/test/index.js +++ b/test/index.js @@ -173,11 +173,12 @@ test ('recursive filter multifield', (t) => { ] } ]; - const filtered = [ - { name: 'foo', f: 'include' } - ]; + const filtered = [ { name: 'foo', f: 'include' } ]; const filter = { - fields: ['name', 'f'], + fields: [ + 'name', + 'f' + ], filter: /foo include/ui }; const result = util.recursive_filter (raw, [ filter ]);