webpack/scenes/Subscriptions/Manifest/__tests__/ManifestHistoryReducer.test.js in katello-3.7.0.rc2 vs webpack/scenes/Subscriptions/Manifest/__tests__/ManifestHistoryReducer.test.js in katello-3.7.0
- old
+ new
@@ -28,9 +28,11 @@
});
it('should have error on MANIFEST_HISTORY_FAILURE', () => {
expect(reducer(manifestHistoryInitialState, {
type: types.MANIFEST_HISTORY_FAILURE,
- error: 'Unable to process request.',
+ payload: {
+ message: 'Unable to process request.',
+ },
})).toEqual(manifestHistoryErrorState);
});
});