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