Skip to content

Commit f06106d

Browse files
committed
fix indentation
1 parent 00fee00 commit f06106d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

redux-actions/redux-actions-tests.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const incrementAction: (...args: any[]) => ReduxActions.Action = ReduxActions.cr
1616
);
1717
const action: ReduxActions.Action = incrementAction(42);
1818

19-
const incrementByAction: (...args: any[]) => ReduxActions.Action = ReduxActions.createAction<number>(
19+
const incrementByAction: (...args: any[]) => ReduxActions.Action = ReduxActions.createAction<number>(
2020
'INCREMENT_BY',
2121
(amount: number) => amount,
2222
amount => ({ remote: true })
@@ -30,7 +30,6 @@ const actionHandler = ReduxActions.handleAction<number>(
3030
);
3131
state = actionHandler(0, { type: 'INCREMENT' });
3232

33-
3433
const actionHandlerWithReduceMap = ReduxActions.handleAction<number>(
3534
'INCREMENT_BY', {
3635
next(state: number, action: ReduxActions.Action) {
@@ -54,3 +53,4 @@ const actionsHandlerWithInitialState = ReduxActions.handleActions<number>({
5453
state = actionsHandlerWithInitialState(0, { type: 'INCREMENT' });
5554

5655

56+

0 commit comments

Comments
 (0)