Skip to content

Commit ca935a1

Browse files
committed
Merge pull request #80 from skevy/fix-test-linting
fix linting errors in tests
2 parents 6ccb3db + 47821d0 commit ca935a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/components/Connector.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ describe('React', () => {
9999
expect(spy.calls.length).toBe(1);
100100
});
101101

102-
it('shallow compares selected state to prevent unnecessary updates', () =>{
102+
it('shallow compares selected state to prevent unnecessary updates', () => {
103103
const redux = createRedux({ string: stringBuilder });
104104
const spy = expect.createSpy(() => {});
105105
function render({ string }) {

test/composeStores.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { composeStores } from '../src';
33

44
describe('Utils', () => {
55
describe('composeStores', () => {
6-
it('should return a store that maps state keys to reducer functions', () =>{
6+
it('should return a store that maps state keys to reducer functions', () => {
77
const store = composeStores({
88
counter: (state = 0, action) =>
99
action.type === 'increment' ? state + 1 : state,

0 commit comments

Comments
 (0)