Skip to content
This repository was archived by the owner on Jul 8, 2023. It is now read-only.

Commit

Permalink
🚷 fix ESLint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
deepsweet committed Aug 29, 2018
1 parent f652935 commit c676070
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/debounce-handler/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('debounceHandler', () => {
const wrapper = mount(
<EnhancedTarget testHandler={mockTestHandlerInitial} />
)
wrapper.setProps({testHandler: mockTestHandlerUpdated})
wrapper.setProps({ testHandler: mockTestHandlerUpdated })
const testHandler = wrapper.find(Target).prop('testHandler')

testHandler()
Expand Down
2 changes: 1 addition & 1 deletion packages/throttle-handler/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe('throttleHandler', () => {
const wrapper = mount(
<EnhancedTarget testHandler={mockTestHandlerInitial} />
)
wrapper.setProps({testHandler: mockTestHandlerUpdated})
wrapper.setProps({ testHandler: mockTestHandlerUpdated })
const testHandler = wrapper.find(Target).prop('testHandler')
testHandler()
expect(mockTestHandlerInitial.mock.calls).toMatchSnapshot()
Expand Down

0 comments on commit c676070

Please sign in to comment.