diff options
author | Anton Shestakov <av6@dwimlabs.net> | 2016-07-09 00:56:32 +0800 |
---|---|---|
committer | Anton Shestakov <av6@dwimlabs.net> | 2016-07-09 00:56:32 +0800 |
commit | 48b05f7421a345443178b94212266198979589b7 (patch) | |
tree | 5775b2a3aaac39e98604f6d77c13310f956e8e3e /tests/test_util_jid.lua | |
parent | b0622b1716b42a08e4c03ccf899aec40442189be (diff) | |
download | prosody-48b05f7421a345443178b94212266198979589b7.tar.gz prosody-48b05f7421a345443178b94212266198979589b7.zip |
test_util_jid: make function test() local [luacheck]
Diffstat (limited to 'tests/test_util_jid.lua')
-rw-r--r-- | tests/test_util_jid.lua | 2 |
1 files changed, 1 insertions, 1 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"); |