Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
gaearon committed Oct 10, 2015
1 parent a693d55 commit 978d663
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/counter/test/actions/counter.spec.js
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ import * as actions from '../../actions/counter';

const middlewares = [thunk];

/**
/*
* Creates a mock of Redux store with middleware.
*/
function mockStore(getState, expectedActions, onLastAction) {
@@ -32,7 +32,7 @@ function mockStore(getState, expectedActions, onLastAction) {
}
return action;
}
}
};
}

const mockStoreWithMiddleware = applyMiddleware(
2 changes: 1 addition & 1 deletion examples/real-world/createDevToolsWindow.js
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ export default function createDevToolsWindow(store) {
);

if (!win) {
console.error(
console.error( // eslint-disable-line no-console
'Couldn\'t open Redux DevTools due to a popup blocker. ' +
'Please disable the popup blocker for the current page.'
);

0 comments on commit 978d663

Please sign in to comment.