From f5dc5ed8b7a319f34ab23ca4a5e3c960206c3f6b Mon Sep 17 00:00:00 2001 From: Belen Curcio Date: Mon, 30 Jan 2017 15:53:29 -0300 Subject: [PATCH] Test updated --- test/client/coral-framework/store/notificationReducer.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/client/coral-framework/store/notificationReducer.spec.js b/test/client/coral-framework/store/notificationReducer.spec.js index 960034119..40c50d11a 100644 --- a/test/client/coral-framework/store/notificationReducer.spec.js +++ b/test/client/coral-framework/store/notificationReducer.spec.js @@ -28,8 +28,8 @@ describe ('notificationsReducer', () => { type: 'test' }); const result = notificationReducer(store, action); - expect(result.get('text')).to.equal(undefined); - expect(result.get('type')).to.equal(undefined); + expect(result.get('text')).to.equal(''); + expect(result.get('type')).to.equal(''); }); }); });