Skip to content

Commit

Permalink
addition to JBEHAVE-802 - Some template-generated reports are invalid.
Browse files Browse the repository at this point in the history
in html template, removed excess backslash chars for step outcome
not necessary in ftl code, only in java code inside ftl
  • Loading branch information
alexlehm committed Jul 28, 2012
1 parent 73deb6b commit 1e99707
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
</div>
</#if>
</#macro>
<#macro renderStepOutcome outcome><#if outcome=="pending"><span class=\"keyword ${outcome}\">(${keywords.pending})</span></#if><#if outcome=="failed"><span class=\"keyword ${outcome}\">(${keywords.failed})</span></#if><#if outcome=="notPerformed"><span class=\"keyword ${outcome}\">(${keywords.notPerformed})</span></#if></#macro>
<#macro renderStepOutcome outcome><#if outcome=="pending"><span class="keyword ${outcome}">(${keywords.pending})</span></#if><#if outcome=="failed"><span class="keyword ${outcome}">(${keywords.failed})</span></#if><#if outcome=="notPerformed"><span class="keyword ${outcome}">(${keywords.notPerformed})</span></#if></#macro>

<html>
<body>
Expand Down

0 comments on commit 1e99707

Please sign in to comment.