@@ -322,12 +322,12 @@ describe('Utils', () => {
322
322
console . error = preSpy
323
323
} )
324
324
325
- describe ( 'With Replace Reducers' , function ( ) {
325
+ describe ( 'With Replace Reducers' , function ( ) {
326
326
const foo = ( state = { } ) => state
327
327
const bar = ( state = { } ) => state
328
328
const ACTION = { type : 'ACTION' }
329
329
330
- it ( 'should return an updated state when additional reducers are passed to combineReducers' , function ( ) {
330
+ it ( 'should return an updated state when additional reducers are passed to combineReducers' , function ( ) {
331
331
const originalCompositeReducer = combineReducers ( { foo } )
332
332
const store = createStore ( originalCompositeReducer )
333
333
@@ -342,7 +342,7 @@ describe('Utils', () => {
342
342
expect ( nextState ) . not . toBe ( initialState )
343
343
} )
344
344
345
- it ( 'should return an updated state when reducers passed to combineReducers are changed' , function ( ) {
345
+ it ( 'should return an updated state when reducers passed to combineReducers are changed' , function ( ) {
346
346
const baz = ( state = { } ) => state
347
347
348
348
const originalCompositeReducer = combineReducers ( { foo, bar } )
@@ -359,7 +359,7 @@ describe('Utils', () => {
359
359
expect ( nextState ) . not . toBe ( initialState )
360
360
} )
361
361
362
- it ( 'should return the same state when reducers passed to combineReducers not changed' , function ( ) {
362
+ it ( 'should return the same state when reducers passed to combineReducers not changed' , function ( ) {
363
363
const originalCompositeReducer = combineReducers ( { foo, bar } )
364
364
const store = createStore ( originalCompositeReducer )
365
365
@@ -374,7 +374,7 @@ describe('Utils', () => {
374
374
expect ( nextState ) . toBe ( initialState )
375
375
} )
376
376
377
- it ( 'should return an updated state when one of more reducers passed to the combineReducers are removed' , function ( ) {
377
+ it ( 'should return an updated state when one of more reducers passed to the combineReducers are removed' , function ( ) {
378
378
const originalCompositeReducer = combineReducers ( { foo, bar } )
379
379
const store = createStore ( originalCompositeReducer )
380
380
0 commit comments