diff options
author | Kim Alvefur <zash@zash.se> | 2016-01-10 03:25:16 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-01-10 03:25:16 +0100 |
commit | 1fee991cb30e965047fd8a5aac68ba5c78a6357a (patch) | |
tree | 7e608680169ad7b83d8f0a1efbb1697400ac3775 /tests/test.lua | |
parent | 7f4c360c085efd29b0b4e922397bb6c4a132e3ba (diff) | |
download | prosody-1fee991cb30e965047fd8a5aac68ba5c78a6357a.tar.gz prosody-1fee991cb30e965047fd8a5aac68ba5c78a6357a.zip |
tests: Correct mistake from latst merge, use the same variable name in all 3 places where it matters
Diffstat (limited to 'tests/test.lua')
-rw-r--r-- | tests/test.lua | 4 |
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 |