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

[Tests] Fixed typo: 'Any type *should* accept any value' #281

Merged
merged 1 commit into from
Jul 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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