Fix a typo.

This commit is contained in:
Eirik S. Morland 2014-03-23 08:44:10 +01:00
parent a8d6f529d5
commit 3c34d8d6ed

View file

@ -11,6 +11,6 @@ test.print = function(print) {
}
print("tests: " + test.total + "\nfailures: " + test.failures.length)
if (test.failures.length > 0) {
throw new Error(test.failures.length + " test did not pass.")
throw new Error(test.failures.length + " tests did not pass.")
}
}