Software /
code /
prosody
Changeset
11031:57739c591a8c
net.http.parser: Fix incorrect path in test
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 21 Aug 2020 13:49:10 +0100 |
parents | 11030:388f599f66d1 |
children | 11032:28de68414750 |
files | spec/net_http_parser_spec.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/spec/net_http_parser_spec.lua Fri Aug 21 13:41:51 2020 +0100 +++ b/spec/net_http_parser_spec.lua Fri Aug 21 13:49:10 2020 +0100 @@ -118,7 +118,7 @@ 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");