FIX: Make eslint happy.

This commit is contained in:
Guo Xiang Tan 2016-01-05 15:22:29 +08:00
parent 0fa9a50378
commit c947c75de3
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ test('postCountStats', function() {
test('search', () => { test('search', () => {
const result = (term, opts) => { const result = (term, opts) => {
return Category.search(term, opts).map((category) => category.get('id')); return Category.search(term, opts).map((category) => category.get('id'));
} };
const store = createStore(), const store = createStore(),
category1 = store.createRecord('category', { id: 1, name: 'middle term' }), category1 = store.createRecord('category', { id: 1, name: 'middle term' }),