aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test.lua b/tests/test.lua
index 1192b7b8..87467e53 100644
--- a/tests/test.lua
+++ b/tests/test.lua
@@ -145,10 +145,10 @@ function dotest(unitname)
unit._M = unit;
end
setfenv(chunk, unit);
- local success, err = pcall(chunk);
+ local success, ret = pcall(chunk);
_fakeG.module, _fakeG._M = oldmodule, old_M;
if not success then
- print("WARNING: ", "Failed to initialise module: "..unitname, err);
+ print("WARNING: ", "Failed to initialise module: "..unitname, ret);
return;
end