aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/test.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test.lua b/tests/test.lua
index 4d5fe3e8..3b994314 100644
--- a/tests/test.lua
+++ b/tests/test.lua
@@ -163,7 +163,7 @@ function runtest(f, msg)
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