1 files changed, 3 insertions, 0 deletions
diff --git a/tests/http/test_proxyagent.py b/tests/http/test_proxyagent.py
index 22abf76515..eb65f1376e 100644
--- a/tests/http/test_proxyagent.py
+++ b/tests/http/test_proxyagent.py
@@ -213,6 +213,9 @@ class MatrixFederationAgentTests(TestCase):
self.assertEqual(body, b"result")
def test_https_request_via_proxy(self):
+ # XXX needed to unsilence logging
+ logging.root.handlers = [logging.StreamHandler()]
+
agent = ProxyAgent(
self.reactor,
contextFactory=get_test_https_policy(),
|