# HG changeset patch # User Matthew Wild # Date 1598014150 -3600 # Node ID 57739c591a8c8686bf1d07eb6b6f5b1c7450eef1 # Parent 388f599f66d1bead9121d95d0b2c430ced1031c1 net.http.parser: Fix incorrect path in test diff -r 388f599f66d1 -r 57739c591a8c spec/net_http_parser_spec.lua --- 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");