Fix error on settings

This commit is contained in:
Shin'ya Ueoka 2018-08-02 21:35:43 +09:00
parent ab9183f575
commit db9f430627
3 changed files with 8 additions and 6 deletions

View file

@ -25,7 +25,7 @@ describe("settings setting reducer", () => {
it('return next state for SETTING_SHOW_ERROR', () => {
let action = {
type: actions.SETTING_SHOW_ERROR,
text: 'bad value',
error: 'bad value',
json: '{}',
};
let state = settingReducer(undefined, action);