From: Rainer Jung Date: Thu, 9 Mar 2023 10:56:42 +0000 (+0000) Subject: Fix tests test_202_trailer.py::TestTrailers::test_h2_202_03b X-Git-Tag: 2.4.57-rc1-candidate~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba2532798d1af35eb0f31c350ddc15f49c29022b;p=thirdparty%2Fapache%2Fhttpd.git Fix tests test_202_trailer.py::TestTrailers::test_h2_202_03b and test_202_trailer.py::TestTrailers::test_h2_202_04 by adding an explicit Content-Type header to the nghttp call. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1908221 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/pyhttpd/nghttp.py b/test/pyhttpd/nghttp.py index fe4a1aedff3..f27e40d3195 100644 --- a/test/pyhttpd/nghttp.py +++ b/test/pyhttpd/nghttp.py @@ -251,7 +251,9 @@ class Nghttp: f.write("--DSAJKcd9876\n") if not options: options = [] - options.extend(["--data=%s" % reqbody]) + options.extend([ + "--data=%s" % reqbody, + "-HContent-Type: multipart/form-data; boundary=DSAJKcd9876"]) return self._raw(url, timeout, options) def upload(self, url, fpath, timeout=5, options=None):