From: Anton Shestakov Date: Fri, 8 Jul 2016 16:53:46 +0000 (+0800) Subject: test_util_multitable: make mt variable local [luacheck] X-Git-Url: https://git.enpas.org/?p=prosody.git;a=commitdiff_plain;h=db2ebc9585c3d52cd30f913728fedb54d76298f2 test_util_multitable: make mt variable local [luacheck] --- diff --git a/tests/test_util_multitable.lua b/tests/test_util_multitable.lua index 71a83450..4a8dd14c 100644 --- a/tests/test_util_multitable.lua +++ b/tests/test_util_multitable.lua @@ -8,7 +8,7 @@ function new(new, multitable) - mt = new(); + local mt = new(); assert_table(mt, "Multitable is a table"); assert_function(mt.add, "Multitable has method add"); assert_function(mt.get, "Multitable has method get"); @@ -40,7 +40,7 @@ function get(get, multitable) return assert_equal(select(2, has_items(list, ...)), "has-all", message or "List has all expected items, and no more", 2); end - mt = multitable.new(); + local mt = multitable.new(); local trigger1, trigger2, trigger3 = {}, {}, {}; local item1, item2, item3 = {}, {}, {};