Skip to content

Commit

Permalink
set boolean value for multiple
Browse files Browse the repository at this point in the history
  • Loading branch information
GarethSmall committed Feb 17, 2018
1 parent 335fade commit 70b50f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-dom/src/__tests__/ReactDOMSelect-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ describe('ReactDOMSelect', () => {

it('should not select first option by default when multiple is set and no defaultValue is set', () => {
const stub = (
<select multiple onChange={noop}>
<select multiple={true} onChange={noop}>
<option value="a">a</option>
<option value="b">b</option>
<option value="c">c</option>
Expand Down

0 comments on commit 70b50f0

Please sign in to comment.