From: Rainer Jung Date: Thu, 9 Mar 2023 10:52:14 +0000 (+0000) Subject: Fix tests test_202_trailer.py::TestTrailers::test_h2_202_03b X-Git-Tag: 2.5.0-alpha2-ci-test-only~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9239fe521321c13cf6b5c64c3f50909b08635206;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/trunk@1908220 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/pyhttpd/nghttp.py b/test/pyhttpd/nghttp.py index 3c9b0c4444e..bfcbf29a261 100644 --- a/test/pyhttpd/nghttp.py +++ b/test/pyhttpd/nghttp.py @@ -254,7 +254,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):