From: Florimond Manca Date: Sat, 24 Oct 2020 21:25:31 +0000 (+0200) Subject: Drop unecessary host="localhost" in https_server fixture to fix CI build (#1367) X-Git-Tag: 0.17.0~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f54548dad4e682ee2652b4475014637299c5b82;p=thirdparty%2Fhttpx.git Drop unecessary host="localhost" in https_server fixture to fix CI build (#1367) --- diff --git a/tests/conftest.py b/tests/conftest.py index 7c32cec1..12db1b0b 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -300,7 +300,6 @@ def https_server(cert_pem_file, cert_private_key_file): lifespan="off", ssl_certfile=cert_pem_file, ssl_keyfile=cert_private_key_file, - host="localhost", port=8001, loop="asyncio", )