From f06106d28c1fa5faf0c7395d1ac3f308720729af Mon Sep 17 00:00:00 2001 From: Jack Hsu Date: Tue, 15 Sep 2015 02:03:30 -0400 Subject: [PATCH] fix indentation --- redux-actions/redux-actions-tests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redux-actions/redux-actions-tests.ts b/redux-actions/redux-actions-tests.ts index 918bfcf17..30dd00a97 100644 --- a/redux-actions/redux-actions-tests.ts +++ b/redux-actions/redux-actions-tests.ts @@ -16,7 +16,7 @@ const incrementAction: (...args: any[]) => ReduxActions.Action = ReduxActions.cr ); const action: ReduxActions.Action = incrementAction(42); - const incrementByAction: (...args: any[]) => ReduxActions.Action = ReduxActions.createAction( +const incrementByAction: (...args: any[]) => ReduxActions.Action = ReduxActions.createAction( 'INCREMENT_BY', (amount: number) => amount, amount => ({ remote: true }) @@ -30,7 +30,6 @@ const actionHandler = ReduxActions.handleAction( ); state = actionHandler(0, { type: 'INCREMENT' }); - const actionHandlerWithReduceMap = ReduxActions.handleAction( 'INCREMENT_BY', { next(state: number, action: ReduxActions.Action) { @@ -54,3 +53,4 @@ const actionsHandlerWithInitialState = ReduxActions.handleActions({ state = actionsHandlerWithInitialState(0, { type: 'INCREMENT' }); +