fix snapshots

This commit is contained in:
afc163 2018-12-28 14:40:10 +08:00
parent 3f1be96866
commit 990ab8833a
No known key found for this signature in database
GPG Key ID: 738F973FCE5C6B48

View File

@ -3,14 +3,14 @@
exports[`Input should support maxLength 1`] = `
<Input
disabled={false}
maxLength="3"
maxLength={3}
type="text"
>
<Consumer>
<input
className="ant-input"
disabled={false}
maxLength="3"
maxLength={3}
onKeyDown={[Function]}
type="text"
/>
@ -343,12 +343,12 @@ exports[`TextArea should support disabled 1`] = `
exports[`TextArea should support maxLength 1`] = `
<TextArea
maxLength="10"
maxLength={10}
>
<Consumer>
<textarea
className="ant-input"
maxLength="10"
maxLength={10}
onChange={[Function]}
onKeyDown={[Function]}
style={Object {}}