[The test checks that we can handle URLs with paths starting with //](https://github.com/gabrielfalcao/HTTPretty/blob/7804c533ec344eeefaacef5340fe479858f7154b/tests/functional/test_requests.py#L949). However the [http.server.BaseHTTPRequestHandler.parse_request() now replaces '//' with '/'](https://github.com/python/cpython/pull/93879) so the test should be updated to allow also '/foo' as a path.
The test checks that we can handle URLs with paths starting with //.
However the http.server.BaseHTTPRequestHandler.parse_request() now replaces '//' with '/' so the test should be updated to allow also '/foo' as a path.