Skip to content

Commit

Permalink
Remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Jan 31, 2016
1 parent 6e8d9d4 commit 81bf90e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/createStore.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,8 @@ describe('createStore', () => {
expect(listener3.calls.length).toBe(1)
expect(listener4.calls.length).toBe(1)
})
const unsubscribe2 = store.subscribe(listener2)
const unsubscribe3 = store.subscribe(listener3)
store.subscribe(listener2)
store.subscribe(listener3)

store.dispatch(unknownAction())
expect(listener1.calls.length).toBe(1)
Expand Down

0 comments on commit 81bf90e

Please sign in to comment.