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

Commit ee5a535

Browse files
committed
fix(e2e runner): fix typo that caused errors on IE8
Closes #806
1 parent 9cb2195 commit ee5a535

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scenario/output/Xml.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ angular.scenario.output('xml', function(context, runner, model) {
4141
stepContext.attr('status', step.status);
4242
it.append(stepContext);
4343
if (step.error) {
44-
var error = $('<error></error');
44+
var error = $('<error></error>');
4545
stepContext.append(error);
4646
error.text(formatException(stepContext.error));
4747
}

0 commit comments

Comments
 (0)