From 93c90c514a73f8a7d4de8d318476ec7641063935 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 10 Jan 2016 03:25:16 +0100 Subject: 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(-) (limited to 'tests') 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 -- cgit v1.2.3