Skip to content

Commit

Permalink
eslint nag
Browse files Browse the repository at this point in the history
  • Loading branch information
flacoman91 committed Jul 13, 2020
1 parent 9e5f323 commit 38c62d6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/__tests__/RowChart.spec.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,9 +303,9 @@ describe( 'component: RowChart', () => {
spyOn( trendsUtils, 'scrollToFocus' )
mapDispatchToProps( dispatch ).collapseRow( 'Some Expanded row' )
expect( dispatch.mock.calls ).toEqual( [ [ {
requery: "REQUERY_NEVER",
type: "TREND_COLLAPSED",
value: "Some Expanded row"
requery: 'REQUERY_NEVER',
type: 'TREND_COLLAPSED',
value: 'Some Expanded row'
} ] ] )
expect( trendsUtils.scrollToFocus ).not.toHaveBeenCalled()
} )
Expand All @@ -314,9 +314,9 @@ describe( 'component: RowChart', () => {
spyOn( trendsUtils, 'scrollToFocus' )
mapDispatchToProps( dispatch ).expandRow( 'collapse row name' )
expect( dispatch.mock.calls ).toEqual( [ [ {
requery: "REQUERY_NEVER",
type: "TREND_EXPANDED",
value: "collapse row name"
requery: 'REQUERY_NEVER',
type: 'TREND_EXPANDED',
value: 'collapse row name'
} ] ] )
expect( trendsUtils.scrollToFocus ).not.toHaveBeenCalled()
} )
Expand Down

0 comments on commit 38c62d6

Please sign in to comment.