Fixed a typo which prevented failure messages from appearing in output

This commit is contained in:
Kelvin Luck 2013-01-08 10:13:55 +00:00
parent e8e95dbbca
commit 8e85e593bd

View File

@ -5,7 +5,7 @@
<% testsuite.testcases.forEach(function(testcase) { %>
<testcase classname="<%- testcase.classname %>" name="<%- testcase.name %>" time="<%= testcase.time %>">
<% if (testcase.failureMessage) { %>
<failure><%= testsuite.failureMessage %></failure>
<failure><%= testcase.failureMessage %></failure>
<% } %>
</testcase>
<% }) %>