fix(e2e runner): fix typo that caused errors on IE8

Closes #806
This commit is contained in:
Igor Minar 2012-03-20 00:20:12 -07:00
parent 9cb2195e61
commit ee5a5352fd

View file

@ -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));
}