diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-08-21 13:49:10 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-08-21 13:49:10 +0100 |
commit | 70b697de98ce0501cd5d139890c9c428acd71f14 (patch) | |
tree | 4898c48163b9794b3d3a8fa542ad2dba7322c72b /spec | |
parent | 076d8b698f664a8a47a38e16f54157cb702f43a8 (diff) | |
download | prosody-70b697de98ce0501cd5d139890c9c428acd71f14.tar.gz prosody-70b697de98ce0501cd5d139890c9c428acd71f14.zip |
net.http.parser: Fix incorrect path in test
Diffstat (limited to 'spec')
-rw-r--r-- | spec/net_http_parser_spec.lua | 2 |
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"); |