Skip to content

Commit

Permalink
Fixing typo on test (facebook#11495)
Browse files Browse the repository at this point in the history
- As ironicaly as it sounds the tests was checking for misspelling
  • Loading branch information
mitermayer authored and Ethan-Arrowood committed Dec 8, 2017
1 parent dab2704 commit 5073a3a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ describe('create-react-class-integration', () => {
);
});

it('should warn when mispelling shouldComponentUpdate', () => {
it('should warn when misspelling shouldComponentUpdate', () => {
spyOn(console, 'error');

createReactClass({
Expand Down Expand Up @@ -140,7 +140,7 @@ describe('create-react-class-integration', () => {
);
});

it('should warn when mispelling componentWillReceiveProps', () => {
it('should warn when misspelling componentWillReceiveProps', () => {
spyOn(console, 'error');
createReactClass({
componentWillRecieveProps: function() {
Expand Down

0 comments on commit 5073a3a

Please sign in to comment.