aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-01-10 03:25:16 +0100
committerKim Alvefur <zash@zash.se>2016-01-10 03:25:16 +0100
commit93c90c514a73f8a7d4de8d318476ec7641063935 (patch)
tree7e608680169ad7b83d8f0a1efbb1697400ac3775 /tests
parent2ff321a3c7f3b705424cf86951e568a810274eed (diff)
downloadprosody-93c90c514a73f8a7d4de8d318476ec7641063935.tar.gz
prosody-93c90c514a73f8a7d4de8d318476ec7641063935.zip
tests: Correct mistake from latst merge, use the same variable name in all 3 places where it matters
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