diff --git a/src/reducers/__tests__/config.spec.js b/src/reducers/__tests__/config.spec.js index 5639d92f..6185af82 100644 --- a/src/reducers/__tests__/config.spec.js +++ b/src/reducers/__tests__/config.spec.js @@ -1,4 +1,3 @@ -import expect from 'expect'; import Immutable from 'immutable'; import { configLoaded, configLoading, configFailed } from '../../actions/config'; import config from '../config'; @@ -14,9 +13,9 @@ describe('config', () => { it('should handle an update', () => { expect( - config(Immutable.Map({ 'a': 'b', 'c': 'd' }), configLoaded({ 'a': 'changed', 'e': 'new' })) + config(Immutable.Map({ a: 'b', c: 'd' }), configLoaded({ a: 'changed', e: 'new' })) ).toEqual( - Immutable.Map({ 'a': 'changed', 'e': 'new' }) + Immutable.Map({ a: 'changed', e: 'new' }) ); });