Navigation Menu

Skip to content

Commit

Permalink
[Ref JENKINS-10870] UI tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
swestcott committed Sep 5, 2011
1 parent fd09feb commit d929afc
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -3,14 +3,14 @@
xmlns:f="/lib/form" xmlns:i="jelly:fmt">
<table>
<j:if test="${it.failCount > 0}">
<tr class="result-failed"><td><strong>Wrong: ${it.failCount}</strong></td></tr>
<tr class="result-failed"><td><strong>Wrong and Exceptions: ${it.failCount}</strong></td></tr>
<tr><th>Name</th><th>Right</th><th>Wrong</th><th>Ignored</th><th>Exceptions</th></tr>
<j:forEach var="r" items="${it.failedTests}">
<tr><td>${it.toHtml(r)}</td><td>${r.passCount}</td><td>${r.failOnlyCount}</td><td>${r.ignoredCount}</td><td>${r.exceptionCount}</td></tr>
</j:forEach>
</j:if>
<j:if test="${it.skipCount > 0}">
<tr class="result-skipped"><td><strong>Ignored and Exceptions: ${it.skipCount}</strong></td></tr>
<tr class="result-skipped"><td><strong>Ignored: ${it.skipCount}</strong></td></tr>
<tr><th>Name</th><th>Right</th><th>Wrong</th><th>Ignored</th><th>Exceptions</th></tr>
<j:forEach var="r" items="${it.skippedTests}">
<tr><td>${it.toHtml(r)}</td><td>${r.passCount}</td><td>${r.failCount}</td><td>${r.ignoredCount}</td><td>${r.exceptionCount}</td></tr>
Expand Down

0 comments on commit d929afc

Please sign in to comment.