webpack/scenes/Subscriptions/Manifest/__tests__/ManifestHistoryReducer.test.js in katello-3.8.0.rc1 vs webpack/scenes/Subscriptions/Manifest/__tests__/ManifestHistoryReducer.test.js in katello-3.8.0.rc2
- 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);
});
});