Skip to content

Commit dc8b121

Browse files
committed
fix(e2e runner): fix typo that caused errors on IE8
Closes angular#806
1 parent 400f913 commit dc8b121

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)