From 2050ecc7d7ef88770986aca06733e6aaf2fb1c00 Mon Sep 17 00:00:00 2001 From: Noah Gorny Date: Mon, 23 Mar 2020 11:29:58 +0200 Subject: [PATCH] tests: session: Remake test_insecure_host into test_trusted_host --- tests/unit/test_network_session.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/unit/test_network_session.py b/tests/unit/test_network_session.py index 125ac2d8de2..a0d1463b2cf 100644 --- a/tests/unit/test_network_session.py +++ b/tests/unit/test_network_session.py @@ -72,7 +72,7 @@ def test_http_cache_is_not_enabled(self, tmpdir): assert not hasattr(session.adapters["http://"], "cache") - def test_insecure_host_adapter(self, tmpdir): + def test_trusted_hosts_adapter(self, tmpdir): session = PipSession( cache=tmpdir.joinpath("test-cache"), trusted_hosts=["example.com"], @@ -81,8 +81,8 @@ def test_insecure_host_adapter(self, tmpdir): assert "https://example.com/" in session.adapters # Check that the "port wildcard" is present. assert "https://example.com:" in session.adapters - # Check that the cache isn't enabled. - assert not hasattr(session.adapters["https://example.com/"], "cache") + # Check that the cache is enabled. + assert hasattr(session.adapters["https://example.com/"], "cache") def test_add_trusted_host(self): # Leave a gap to test how the ordering is affected.