From e42c1e67e9fa9c2c008b473830403210049663f0 Mon Sep 17 00:00:00 2001 From: coletdjnz Date: Sun, 14 Jul 2024 13:40:50 +1200 Subject: [PATCH] Remove accidental debug --- test/test_networking.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_networking.py b/test/test_networking.py index d78a7b378..c12878a80 100644 --- a/test/test_networking.py +++ b/test/test_networking.py @@ -407,7 +407,7 @@ def test_percent_encode(self, handler): '/redirect_dotsegments_absolute', ]) def test_remove_dot_segments(self, handler, path): - with handler(verbose=True) as rh: + with handler() as rh: # This isn't a comprehensive test, # but it should be enough to check whether the handler is removing dot segments in required scenarios res = validate_and_send(rh, Request(f'http://127.0.0.1:{self.http_port}{path}'))