From: Jörn Zaefferer Date: Tue, 5 Sep 2006 20:00:36 +0000 (+0000) Subject: Fixed missing brackets (d'oh) X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=fd4fc0bcdd4d2e65d48e99aa40af79da72225bea;p=jquery.git Fixed missing brackets (d'oh) --- diff --git a/build/test/js/test.js b/build/test/js/test.js index 98c5791..d478b63 100644 --- a/build/test/js/test.js +++ b/build/test/js/test.js @@ -52,9 +52,10 @@ function evaluateTest(files, num, js) { try { eval(js); } catch(e) { - if(typeof console != "undefined") + if(typeof console != "undefined") { console.error(e); console.debug(js); + } Test.push( [ false, "Died on test #" + (Test.length+1) + ": " + e ] ); }