tests/test.lua
changeset 787 c4a4d5604549
parent 760 90ce865eebd8
child 808 ce39abe0259a
--- a/tests/test.lua	Wed Feb 11 19:35:48 2009 +0000
+++ b/tests/test.lua	Wed Feb 11 19:50:58 2009 +0000
@@ -163,7 +163,7 @@
 	local success, ret = pcall(f);
 	if success and verbosity >= 2 then
 		print("SUBTEST PASSED: "..(msg or "(no description)"));
-	elseif (not success) and verbosity >= 1 then
+	elseif (not success) and verbosity >= 0 then
 		print("SUBTEST FAILED: "..(msg or "(no description)"));
 		error(ret, 0);
 	end