Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

Commit

Permalink
[Tests] Fixed typo: 'Any type *should* accept any value'
Browse files Browse the repository at this point in the history
  • Loading branch information
weiluntong committed Jul 15, 2019
1 parent e32c490 commit bef0803
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion __tests__/PropTypesDevelopmentReact15.js
Original file line number Diff line number Diff line change
Expand Up @@ -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, []);
Expand Down
2 changes: 1 addition & 1 deletion __tests__/PropTypesDevelopmentStandalone-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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, []);
Expand Down
2 changes: 1 addition & 1 deletion __tests__/PropTypesProductionReact15-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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, []);
Expand Down

0 comments on commit bef0803

Please sign in to comment.