[GRADLE-2297] The generated html test reports contain invalid HTML which causes unnecessary warnings in IDEs (e.g. Eclipse) Created: 12/May/12 Updated: 04/Jan/13 Resolved: 19/Aug/12 |
|
Status: | Resolved |
Project: | Gradle |
Affects Version/s: | 1.0-rc-3 |
Fix Version/s: | 1.2-rc-1 |
Type: | Bug | ||
Reporter: | Klaus UNGER | Assignee: | Unassigned |
Resolution: | Fixed | Votes: | 0 |
Description |
After running gradle clean test for my project on the command line, the generated test report html files contain invalid html! <table> <thead> <tr> <th>Test</th><th>Duration</th><th>Result</th> </tr> </thead> <tr> <td class="success">length of Spock's and his friends' names<td>0.160s</td><td class="success">passed</td></td> </tr> </table> The td with class "success" is not closed properly, because the closing tag is at the end of the line. |