Skip to content

Commit

Permalink
docs(readme): Remove duplicate "data-testid" from example (#291)
Browse files Browse the repository at this point in the history
Having two "data-testid" attributes is invalid, so I assume this is a typo/leftover. Removing should simplify example and prevent possible confusion.
  • Loading branch information
danawoodman committed Sep 8, 2020
1 parent 2da8c71 commit 0139b9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -781,7 +781,7 @@ For all other form elements, the value is matched using the same algorithm as in
<input type="text" value="text" data-testid="input-text" />
<input type="number" value="5" data-testid="input-number" />
<input type="text" data-testid="input-empty" />
<select data-testid="multiple" multiple data-testid="select-number">
<select multiple data-testid="select-number">
<option value="first">First Value</option>
<option value="second" selected>Second Value</option>
<option value="third" selected>Third Value</option>
Expand Down

0 comments on commit 0139b9f

Please sign in to comment.