diff options
| -rw-r--r-- | src/scenario/output/Xml.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scenario/output/Xml.js b/src/scenario/output/Xml.js index 9a2071b9..6cd27fe7 100644 --- a/src/scenario/output/Xml.js +++ b/src/scenario/output/Xml.js @@ -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)); } |
