Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
fix(e2e runner): fix typo that caused errors on IE8
Browse files Browse the repository at this point in the history
Closes #806
  • Loading branch information
IgorMinar committed Mar 20, 2012
1 parent 9cb2195 commit ee5a535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scenario/output/Xml.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ angular.scenario.output('xml', function(context, runner, model) {
stepContext.attr('status', step.status);
it.append(stepContext);
if (step.error) {
var error = $('<error></error');
var error = $('<error></error>');
stepContext.append(error);
error.text(formatException(stepContext.error));
}
Expand Down

0 comments on commit ee5a535

Please sign in to comment.