From ee5a5352fd4b94cedee6ef20d4bf2d43ce77e00b Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Tue, 20 Mar 2012 00:20:12 -0700 Subject: [PATCH] fix(e2e runner): fix typo that caused errors on IE8 Closes #806 --- src/scenario/output/Xml.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scenario/output/Xml.js b/src/scenario/output/Xml.js index 9a2071b9d82..6cd27fe7765 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 = $(''); stepContext.append(error); error.text(formatException(stepContext.error)); }