Skip to content

Commit 152c886

Browse files
committed
Fix lint
1 parent e621c79 commit 152c886

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/applyMiddleware.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import thunk from '../src/middleware/thunk';
66

77
describe('applyMiddleware', () => {
88
it('wraps dispatch method with middleware', () => {
9-
function test(spy) {
9+
function test(spyOnMethods) {
1010
return methods => next => action => {
11-
spy(methods);
11+
spyOnMethods(methods);
1212
return next(action);
1313
};
1414
}

0 commit comments

Comments
 (0)