diff --git a/src/OEUnit/Automation/SureFireReporter.cls b/src/OEUnit/Automation/SureFireReporter.cls index 27233e5..9b474b6 100644 --- a/src/OEUnit/Automation/SureFireReporter.cls +++ b/src/OEUnit/Automation/SureFireReporter.cls @@ -80,7 +80,7 @@ CLASS OEUnit.Automation.SureFireReporter INHERITS BaseReporter: + SUBSTITUTE('>~n ~n', - currentResult:GetMessage()). + REPLACE(currentResult:GetMessage(), "<":U, "<":U)). /* loop through the list of errors */ errorList = currentResult:GetErrors(). @@ -95,11 +95,10 @@ CLASS OEUnit.Automation.SureFireReporter INHERITS BaseReporter: END. outputXml = outputXml - + SUBSTITUTE('&1 at &2', + + REPLACE(SUBSTITUTE('&1 at &2', currentResult:GetMessage(), - errorStack). + errorStack), "<":U, "<":U). END. - /* close the testcase tag */ outputXml = outputXml + '~n ~n ~n'.