From f9c43bd275d8ef5bbcfbd29688ac8b1d130252a8 Mon Sep 17 00:00:00 2001 From: Andrey Okonetchnikov Date: Thu, 13 Oct 2016 11:56:26 +0200 Subject: [PATCH] Removed expect import --- src/reducers/__tests__/config.spec.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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' }) ); });