Skip to content

Commit

Permalink
Fix test typos
Browse files Browse the repository at this point in the history
  • Loading branch information
nickclaw authored Jan 6, 2017
1 parent 807380c commit 2581ad7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/InfiniteLoader/InfiniteLoader.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ describe('forceUpdateReactVirtualizedComponent', () => {
it('should call :recomputeGridSize if defined', () => {
let recomputedGridSize = false
class TestComponent extends Component {
forceUpdateGrid () {
recomputeGridSize () {
recomputedGridSize = true
}
render () {
Expand All @@ -380,7 +380,7 @@ describe('forceUpdateReactVirtualizedComponent', () => {
it('should called :recomputeRowHeights if defined', () => {
let recomputedRowHeights = false
class TestComponent extends Component {
forceUpdate () {
recomputeRowHeights () {
recomputedRowHeights = true
}
render () {
Expand Down

0 comments on commit 2581ad7

Please sign in to comment.