From: Tom Christie Date: Thu, 21 Nov 2024 11:38:53 +0000 (+0000) Subject: Update test_config.py X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15ffaf9e1ad5d99305cd2a0b42ee9aed15736bab;p=thirdparty%2Fhttpx.git Update test_config.py --- diff --git a/tests/test_config.py b/tests/test_config.py index 22abd4c2..f77a4c72 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -20,12 +20,6 @@ def test_load_ssl_config_verify_non_existing_file(): context.load_verify_locations(cafile="/path/to/nowhere") -def test_load_ssl_with_keylog(monkeypatch: typing.Any) -> None: - monkeypatch.setenv("SSLKEYLOGFILE", "test") - context = httpx.create_ssl_context() - assert context.keylog_filename == "test" - - def test_load_ssl_config_verify_existing_file(): context = httpx.create_ssl_context() context.load_verify_locations(capath=certifi.where())