aboutsummaryrefslogtreecommitdiffstats
path: root/spec/net_http_parser_spec.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2020-08-21 13:49:10 +0100
committerMatthew Wild <mwild1@gmail.com>2020-08-21 13:49:10 +0100
commit8fa236e66f6da9664a2083b47d89eb712327f857 (patch)
tree4898c48163b9794b3d3a8fa542ad2dba7322c72b /spec/net_http_parser_spec.lua
parent974d6a467954a69bae4ba9e73ae6c8c7dee12965 (diff)
downloadprosody-8fa236e66f6da9664a2083b47d89eb712327f857.tar.gz
prosody-8fa236e66f6da9664a2083b47d89eb712327f857.zip
net.http.parser: Fix incorrect path in test
Diffstat (limited to 'spec/net_http_parser_spec.lua')
-rw-r--r--spec/net_http_parser_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/net_http_parser_spec.lua b/spec/net_http_parser_spec.lua
index 6a35d717..1a15302d 100644
--- a/spec/net_http_parser_spec.lua
+++ b/spec/net_http_parser_spec.lua
@@ -118,7 +118,7 @@ o
end);
pending("should handle large chunked responses", function ()
- local data = io.open("spec/inputs/httpstream-chunked-test.txt", "rb"):read("*a");
+ local data = io.open("spec/inputs/http/httpstream-chunked-test.txt", "rb"):read("*a");
-- Just a sanity check... text editors and things may mess with line endings, etc.
assert.equal("25930f021785ae14053a322c2dbc1897c3769720", sha1(data, true), "test data malformed");