diff --git a/__tests__/PropTypesDevelopmentReact15.js b/__tests__/PropTypesDevelopmentReact15.js index fb6da63..42ebafb 100644 --- a/__tests__/PropTypesDevelopmentReact15.js +++ b/__tests__/PropTypesDevelopmentReact15.js @@ -401,7 +401,7 @@ describe('PropTypesDevelopmentReact15', () => { }); describe('Any type', () => { - it('should should accept any value', () => { + it('should accept any value', () => { typeCheckPass(PropTypes.any, 0); typeCheckPass(PropTypes.any, 'str'); typeCheckPass(PropTypes.any, []); diff --git a/__tests__/PropTypesDevelopmentStandalone-test.js b/__tests__/PropTypesDevelopmentStandalone-test.js index f958dac..3c32fe1 100644 --- a/__tests__/PropTypesDevelopmentStandalone-test.js +++ b/__tests__/PropTypesDevelopmentStandalone-test.js @@ -398,7 +398,7 @@ describe('PropTypesDevelopmentStandalone', () => { }); describe('Any type', () => { - it('should should accept any value', () => { + it('should accept any value', () => { typeCheckPass(PropTypes.any, 0); typeCheckPass(PropTypes.any, 'str'); typeCheckPass(PropTypes.any, []); diff --git a/__tests__/PropTypesProductionReact15-test.js b/__tests__/PropTypesProductionReact15-test.js index e3c9543..66de1ad 100644 --- a/__tests__/PropTypesProductionReact15-test.js +++ b/__tests__/PropTypesProductionReact15-test.js @@ -177,7 +177,7 @@ describe('PropTypesProductionReact15', () => { }); describe('Any type', () => { - it('should should accept any value', () => { + it('should accept any value', () => { expectNoop(PropTypes.any, 0); expectNoop(PropTypes.any, 'str'); expectNoop(PropTypes.any, []);