aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Shestakov <av6@dwimlabs.net>2016-07-23 20:12:53 +0800
committerAnton Shestakov <av6@dwimlabs.net>2016-07-23 20:12:53 +0800
commit27b642fd2dd7949ba96de3bb006ed2d26cf4f83b (patch)
treecd792f92bfbdfb87944b5e558b02e393b26c97bb
parent5742b659ac301d5614f6a48c8dab68a2c5e68a6f (diff)
downloadprosody-27b642fd2dd7949ba96de3bb006ed2d26cf4f83b.tar.gz
prosody-27b642fd2dd7949ba96de3bb006ed2d26cf4f83b.zip
test_util_http: wrap individual test blocks in do-end [luacheck]
-rw-r--r--tests/test_util_http.lua20
1 files changed, 12 insertions, 8 deletions
diff --git a/tests/test_util_http.lua b/tests/test_util_http.lua
index a195df6b..d9cc2779 100644
--- a/tests/test_util_http.lua
+++ b/tests/test_util_http.lua
@@ -25,13 +25,17 @@ function formencode(formencode)
end
function formdecode(formdecode)
- local t = formdecode("one=1&two=2");
- assert_table(t[1]);
- assert_equal(t[1].name, "one"); assert_equal(t[1].value, "1");
- assert_table(t[2]);
- assert_equal(t[2].name, "two"); assert_equal(t[2].value, "2");
+ do
+ local t = formdecode("one=1&two=2");
+ assert_table(t[1]);
+ assert_equal(t[1].name, "one"); assert_equal(t[1].value, "1");
+ assert_table(t[2]);
+ assert_equal(t[2].name, "two"); assert_equal(t[2].value, "2");
+ end
- local t = formdecode("one+two=1&two+one%26=2");
- assert_equal(t[1].name, "one two"); assert_equal(t[1].value, "1");
- assert_equal(t[2].name, "two one&"); assert_equal(t[2].value, "2");
+ do
+ local t = formdecode("one+two=1&two+one%26=2");
+ assert_equal(t[1].name, "one two"); assert_equal(t[1].value, "1");
+ assert_equal(t[2].name, "two one&"); assert_equal(t[2].value, "2");
+ end
end