@@ -802,9 +802,9 @@ describe('ReactDOMTextarea', () => {
802
802
ReactTestUtils . renderIntoDocument ( < textarea value = { false } /> ) ,
803
803
) . toErrorDev (
804
804
'Warning: You provided a `value` prop to a form ' +
805
- 'field without an `onChange` handler. This will render a read-only ' +
806
- 'field. If the field should be mutable use `defaultValue`. ' +
807
- 'Otherwise, set either `onChange` or `readOnly`.' ,
805
+ 'field without an `onChange` handler. This will render a read-only ' +
806
+ 'field. If the field should be mutable use `defaultValue`. ' +
807
+ 'Otherwise, set either `onChange` or `readOnly`.' ,
808
808
) ;
809
809
} ) ;
810
810
@@ -813,9 +813,9 @@ describe('ReactDOMTextarea', () => {
813
813
ReactTestUtils . renderIntoDocument ( < textarea value = { 0 } /> ) ,
814
814
) . toErrorDev (
815
815
'Warning: You provided a `value` prop to a form ' +
816
- 'field without an `onChange` handler. This will render a read-only ' +
817
- 'field. If the field should be mutable use `defaultValue`. ' +
818
- 'Otherwise, set either `onChange` or `readOnly`.' ,
816
+ 'field without an `onChange` handler. This will render a read-only ' +
817
+ 'field. If the field should be mutable use `defaultValue`. ' +
818
+ 'Otherwise, set either `onChange` or `readOnly`.' ,
819
819
) ;
820
820
} ) ;
821
821
@@ -824,9 +824,9 @@ describe('ReactDOMTextarea', () => {
824
824
ReactTestUtils . renderIntoDocument ( < textarea value = "0" /> ) ,
825
825
) . toErrorDev (
826
826
'Warning: You provided a `value` prop to a form ' +
827
- 'field without an `onChange` handler. This will render a read-only ' +
828
- 'field. If the field should be mutable use `defaultValue`. ' +
829
- 'Otherwise, set either `onChange` or `readOnly`.' ,
827
+ 'field without an `onChange` handler. This will render a read-only ' +
828
+ 'field. If the field should be mutable use `defaultValue`. ' +
829
+ 'Otherwise, set either `onChange` or `readOnly`.' ,
830
830
) ;
831
831
} ) ;
832
832
@@ -835,9 +835,9 @@ describe('ReactDOMTextarea', () => {
835
835
ReactTestUtils . renderIntoDocument ( < textarea value = "" /> ) ,
836
836
) . toErrorDev (
837
837
'Warning: You provided a `value` prop to a form ' +
838
- 'field without an `onChange` handler. This will render a read-only ' +
839
- 'field. If the field should be mutable use `defaultValue`. ' +
840
- 'Otherwise, set either `onChange` or `readOnly`.' ,
838
+ 'field without an `onChange` handler. This will render a read-only ' +
839
+ 'field. If the field should be mutable use `defaultValue`. ' +
840
+ 'Otherwise, set either `onChange` or `readOnly`.' ,
841
841
) ;
842
842
} ) ;
843
843
} ) ;
0 commit comments