Skip to content

Commit

Permalink
fix(e2e runner): fix typo that caused errors on IE8
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorMinar committed Mar 20, 2012
1 parent 400f913 commit dc8b121
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

1 comment on commit dc8b121

@vojtajina
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

Please sign in to comment.