From c947c75de35f05e57a43fe4765ef064712a83d26 Mon Sep 17 00:00:00 2001 From: Guo Xiang Tan Date: Tue, 5 Jan 2016 15:22:29 +0800 Subject: [PATCH] FIX: Make eslint happy. --- test/javascripts/models/category-test.js.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/javascripts/models/category-test.js.es6 b/test/javascripts/models/category-test.js.es6 index dc179e7e2f6..7b6a8c3703a 100644 --- a/test/javascripts/models/category-test.js.es6 +++ b/test/javascripts/models/category-test.js.es6 @@ -129,7 +129,7 @@ test('postCountStats', function() { test('search', () => { const result = (term, opts) => { return Category.search(term, opts).map((category) => category.get('id')); - } + }; const store = createStore(), category1 = store.createRecord('category', { id: 1, name: 'middle term' }),