aboutsummaryrefslogtreecommitdiffstats
path: root/tests/report-styles/jreport.xsl
diff options
context:
space:
mode:
authorJiri Vanek <[email protected]>2012-10-23 09:56:26 +0200
committerJiri Vanek <[email protected]>2012-10-23 09:56:26 +0200
commitc04ca02fec844a29e2d3983f7cce24ba07935964 (patch)
treeb48b31cc9cf26252a3ac273cf4344d79da14556b /tests/report-styles/jreport.xsl
parentb637daffa2aa9de8dff5351b99eccaa069fc87b8 (diff)
KnownToFail texts are now bold in html report
Diffstat (limited to 'tests/report-styles/jreport.xsl')
-rw-r--r--tests/report-styles/jreport.xsl6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/report-styles/jreport.xsl b/tests/report-styles/jreport.xsl
index cf9c58a..ccc6e6a 100644
--- a/tests/report-styles/jreport.xsl
+++ b/tests/report-styles/jreport.xsl
@@ -261,10 +261,10 @@ If there is no need for linking, please use value "none" for this variable
<xsl:when test="@known-to-fail">
<xsl:choose>
<xsl:when test="@known-to-fail=true">
- <xsl:text>" - WARNING This test is known to fail, but have passed!</xsl:text>
+ <b><xsl:text>" - WARNING This test is known to fail, but have passed!</xsl:text></b>
</xsl:when>
<xsl:otherwise>
- <xsl:text> - This test is known to fail</xsl:text>
+ <b><xsl:text> - This test is known to fail</xsl:text></b>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
@@ -276,7 +276,7 @@ If there is no need for linking, please use value "none" for this variable
FAILED (<xsl:value-of select="@time"/>s)
<xsl:choose>
<xsl:when test="@known-to-fail">
- <xsl:text> - This test is known to fail</xsl:text>
+ <b><xsl:text> - This test is known to fail</xsl:text></b>
</xsl:when>
</xsl:choose>
</div>