diff --git a/tests/functional/openlp_core/common/test_httputils.py b/tests/functional/openlp_core/common/test_httputils.py index a24f39967..0552cce8f 100644 --- a/tests/functional/openlp_core/common/test_httputils.py +++ b/tests/functional/openlp_core/common/test_httputils.py @@ -279,7 +279,6 @@ class TestGetProxySettings(TestCase, TestMixin): mocked_settings.value.assert_not_called() assert result is None - def test_no_proxy_mode(self): """ Test that a dictionary with http and https values are set to None is returned, when `NO_PROXY` mode is specified @@ -323,7 +322,6 @@ class TestGetProxySettings(TestCase, TestMixin): # THEN: The returned value should be the proxy servers without authentication assert result == {'http': 'http://testhttp.server:port', 'https': 'https://testhttps.server:port'} - def test_manual_proxy_mode_auth(self): """ Test that the correct proxy addresses are returned when basic authentication is used