diff options
Diffstat (limited to 'test/modules/http1/env.py')
-rw-r--r-- | test/modules/http1/env.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/modules/http1/env.py b/test/modules/http1/env.py index 5e395f31a8..e2df1a561f 100644 --- a/test/modules/http1/env.py +++ b/test/modules/http1/env.py @@ -1,7 +1,6 @@ import inspect import logging import os -import re import subprocess from typing import Dict, Any @@ -61,13 +60,6 @@ class H1TestEnv(HttpdTestEnv): super().__init__(pytestconfig=pytestconfig) self.add_httpd_log_modules(["http", "core"]) - self.httpd_error_log.set_ignored_lognos([ - 'AH00135', # unsafe/strict tests send invalid methods - 'AH02430', # test of invalid chars in response headers - ]) - self.httpd_error_log.add_ignored_patterns([ - ]) - def setup_httpd(self, setup: HttpdTestSetup = None): super().setup_httpd(setup=H1TestSetup(env=self)) |