From bef0803ccdfeeeeed0e333e51f7c240d54af23d3 Mon Sep 17 00:00:00 2001 From: weiluntong Date: Mon, 15 Jul 2019 13:31:48 -0600 Subject: [PATCH] [Tests] Fixed typo: 'Any type *should* accept any value' --- __tests__/PropTypesDevelopmentReact15.js | 2 +- __tests__/PropTypesDevelopmentStandalone-test.js | 2 +- __tests__/PropTypesProductionReact15-test.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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, []);