From 79e791b0cf8e500c74448c7c69f5f3f361d2afdb Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 10 Jan 2016 03:25:16 +0100 Subject: [PATCH] tests: Correct mistake from latst merge, use the same variable name in all 3 places where it matters --- tests/test.lua | 4 ++-- 1 file 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 -- 2.30.2