Fixed missing brackets (d'oh)
This commit is contained in:
parent
ded1402498
commit
fd4fc0bcdd
|
@ -52,9 +52,10 @@ function evaluateTest(files, num, js) {
|
||||||
try {
|
try {
|
||||||
eval(js);
|
eval(js);
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
if(typeof console != "undefined")
|
if(typeof console != "undefined") {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
console.debug(js);
|
console.debug(js);
|
||||||
|
}
|
||||||
Test.push( [ false, "Died on test #" + (Test.length+1) + ": " + e ] );
|
Test.push( [ false, "Died on test #" + (Test.length+1) + ": " + e ] );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue