s/spaces/tab

This commit is contained in:
Leo Horie 2014-03-25 21:30:53 -04:00
parent 54b024ecbf
commit e94b6597af

View file

@ -10,7 +10,8 @@ test.print = function(print) {
print(test.failures[i].toString())
}
print("tests: " + test.total + "\nfailures: " + test.failures.length)
if (test.failures.length > 0) {
throw new Error(test.failures.length + " tests did not pass.")
}
if (test.failures.length > 0) {
throw new Error(test.failures.length + " tests did not pass.")
}
}