Skip to content

Commit 489b096

Browse files
committed
Fix typo
1 parent 850e8f7 commit 489b096

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/toolkit/src/tests/configureStore.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ describe('configureStore', async () => {
5555
expect(configureStore({ reducer })).toBeInstanceOf(Object)
5656
expect(redux.combineReducers).toHaveBeenCalledWith(reducer)
5757
expect(redux.applyMiddleware).toHaveBeenCalled()
58-
expect(composeWithDevToolsSpy).toHaveBeenCalled() // @remap-prod-remove-line-line
58+
expect(composeWithDevToolsSpy).toHaveBeenCalled() // @remap-prod-remove-line
5959
expect(redux.createStore).toHaveBeenCalledWith(
6060
expect.any(Function),
6161
undefined,
@@ -78,7 +78,7 @@ describe('configureStore', async () => {
7878
configureStore({ middleware: () => new Tuple(), reducer })
7979
).toBeInstanceOf(Object)
8080
expect(redux.applyMiddleware).toHaveBeenCalledWith()
81-
expect(composeWithDevToolsSpy).toHaveBeenCalled() // @remap-prod-remove-line-line
81+
expect(composeWithDevToolsSpy).toHaveBeenCalled() // @remap-prod-remove-line
8282
expect(redux.createStore).toHaveBeenCalledWith(
8383
reducer,
8484
undefined,
@@ -107,7 +107,7 @@ describe('configureStore', async () => {
107107
expect.any(Function), // serializableCheck
108108
expect.any(Function) // actionCreatorCheck
109109
)
110-
expect(composeWithDevToolsSpy).toHaveBeenCalled() // @remap-prod-remove-line-line
110+
expect(composeWithDevToolsSpy).toHaveBeenCalled() // @remap-prod-remove-line
111111
expect(redux.createStore).toHaveBeenCalledWith(
112112
reducer,
113113
undefined,
@@ -144,7 +144,7 @@ describe('configureStore', async () => {
144144
configureStore({ middleware: () => new Tuple(thank), reducer })
145145
).toBeInstanceOf(Object)
146146
expect(redux.applyMiddleware).toHaveBeenCalledWith(thank)
147-
expect(composeWithDevToolsSpy).toHaveBeenCalled() // @remap-prod-remove-line-line
147+
expect(composeWithDevToolsSpy).toHaveBeenCalled() // @remap-prod-remove-line
148148
expect(redux.createStore).toHaveBeenCalledWith(
149149
reducer,
150150
undefined,

0 commit comments

Comments
 (0)