Skip to content

Commit 57c207e

Browse files
committed
Fix spacing
1 parent 2220c16 commit 57c207e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/__tests__/reduxReactRouter-test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ describe('reduxRouter()', () => {
101101
routes
102102
})(createStore)(reducer);
103103

104-
store.dispatch(pushState(null, '/parent/child/123', { key: 'value'}));
104+
store.dispatch(pushState(null, '/parent/child/123', { key: 'value' }));
105105
expect(store.getState().router.location.pathname)
106106
.to.equal('/parent/child/123');
107107
expect(store.getState().router.location.query).to.eql({ key: 'value' });
@@ -158,7 +158,7 @@ describe('reduxRouter()', () => {
158158
}
159159
})(createStore)(reducer);
160160

161-
store.dispatch(pushState(null, '/parent/child/123', { key: 'value'}));
161+
store.dispatch(pushState(null, '/parent/child/123', { key: 'value' }));
162162
expect(store.getState().router.location.pathname)
163163
.to.equal('/parent/child/123');
164164
});
@@ -188,7 +188,7 @@ describe('reduxRouter()', () => {
188188
)
189189
})(createStore)(reducer);
190190

191-
store.dispatch(pushState(null, '/parent/child/123', { key: 'value'}));
191+
store.dispatch(pushState(null, '/parent/child/123', { key: 'value' }));
192192
expect(store.getState().router.location.pathname)
193193
.to.equal('/login');
194194
});

0 commit comments

Comments
 (0)