diff options
Diffstat (limited to 'modules/http/http_doh.test.lua')
-rw-r--r-- | modules/http/http_doh.test.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/http/http_doh.test.lua b/modules/http/http_doh.test.lua index 60f5cc0a..f0685cb1 100644 --- a/modules/http/http_doh.test.lua +++ b/modules/http/http_doh.test.lua @@ -49,7 +49,7 @@ function parse_pkt(input, desc) end local function check_ok(req, desc) - local headers, stream, errno = req:go(8) -- randomly chosen timeout by tkrizek + local headers, stream, errno = req:go(16) if errno then local errmsg = stream nok(errmsg, desc .. ': ' .. errmsg) @@ -63,7 +63,7 @@ local function check_ok(req, desc) end local function check_err(req, exp_status, desc) - local headers, errmsg, errno = req:go(8) -- randomly chosen timeout by tkrizek + local headers, errmsg, errno = req:go(16) if errno then nok(errmsg, desc .. ': ' .. errmsg) return |