diff options
| author | Igor Minar | 2012-03-20 00:20:12 -0700 |
|---|---|---|
| committer | Igor Minar | 2012-03-20 11:07:37 -0700 |
| commit | ee5a5352fd4b94cedee6ef20d4bf2d43ce77e00b (patch) | |
| tree | 61cea4fbfbb9283dad0024af634f2ca28678fe33 | |
| parent | 9cb2195e61a78e99020ec19d687a221ca88b5900 (diff) | |
| download | angular.js-ee5a5352fd4b94cedee6ef20d4bf2d43ce77e00b.tar.bz2 | |
fix(e2e runner): fix typo that caused errors on IE8
Closes #806
| -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)); } |
