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(''); }); }); });