]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Update test_config.py
authorTom Christie <tom@tomchristie.com>
Thu, 21 Nov 2024 11:38:53 +0000 (11:38 +0000)
committerGitHub <noreply@github.com>
Thu, 21 Nov 2024 11:38:53 +0000 (11:38 +0000)
tests/test_config.py

index 22abd4c22c70c3600dd3a4b01b98df181c1bf624..f77a4c7274aa0afbd74002e429c6c76b3aa29b04 100644 (file)
@@ -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())