aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-07-08 22:01:10 +0200
committerKim Alvefur <zash@zash.se>2016-07-08 22:01:10 +0200
commit7b3f79b2ec8c94a585354d442bc9680cea62c5a3 (patch)
treee5339d0c057334591e52af0777588890d51081a5 /tests
parent8c0ca748b53ca43d707d86590f666bda5e908a81 (diff)
parent9741bdfb3887695e7021d793ce6a96eaf595ed2b (diff)
downloadprosody-7b3f79b2ec8c94a585354d442bc9680cea62c5a3.tar.gz
prosody-7b3f79b2ec8c94a585354d442bc9680cea62c5a3.zip
Merge 0.10->trunk
Diffstat (limited to 'tests')
-rw-r--r--tests/test_util_jid.lua2
-rw-r--r--tests/test_util_multitable.lua4
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_util_jid.lua b/tests/test_util_jid.lua
index c697e63f..0ac5827e 100644
--- a/tests/test_util_jid.lua
+++ b/tests/test_util_jid.lua
@@ -19,7 +19,7 @@ end
function split(split)
- function test(input_jid, expected_node, expected_server, expected_resource)
+ local function test(input_jid, expected_node, expected_server, expected_resource)
local rnode, rserver, rresource = split(input_jid);
assert_equal(expected_node, rnode, "split("..tostring(input_jid)..") failed");
assert_equal(expected_server, rserver, "split("..tostring(input_jid)..") failed");
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 = {}, {}, {};