From fd4fc0bcdd4d2e65d48e99aa40af79da72225bea Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Zaefferer?= Date: Tue, 5 Sep 2006 20:00:36 +0000 Subject: [PATCH] Fixed missing brackets (d'oh) --- build/test/js/test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 ] ); } -- 1.7.10.4