From 3c34d8d6edac550bf35a49478936482142152dec Mon Sep 17 00:00:00 2001 From: "Eirik S. Morland" Date: Sun, 23 Mar 2014 08:44:10 +0100 Subject: [PATCH] Fix a typo. --- tests/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test.js b/tests/test.js index 8c8d24e8..a50f3d8f 100644 --- a/tests/test.js +++ b/tests/test.js @@ -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.") } }