We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 400f913 commit dc8b121Copy full SHA for dc8b121
src/scenario/output/Xml.js
@@ -41,7 +41,7 @@ angular.scenario.output('xml', function(context, runner, model) {
41
stepContext.attr('status', step.status);
42
it.append(stepContext);
43
if (step.error) {
44
- var error = $('<error></error');
+ var error = $('<error></error>');
45
stepContext.append(error);
46
error.text(formatException(stepContext.error));
47
}
0 commit comments