diff options
Diffstat (limited to 'test/modules/http2/test_200_header_invalid.py')
-rw-r--r-- | test/modules/http2/test_200_header_invalid.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/modules/http2/test_200_header_invalid.py b/test/modules/http2/test_200_header_invalid.py index cbc4b6c9fa..6b73301c28 100644 --- a/test/modules/http2/test_200_header_invalid.py +++ b/test/modules/http2/test_200_header_invalid.py @@ -243,7 +243,8 @@ class TestInvalidHeaders: conf.add_vhost_cgi() conf.install() assert env.apache_restart() == 0 - re_emitted = re.compile(r'.* AH03401: .* shutdown, remote.emitted=1') + re_emitted = re.compile(r'.* (AH03401: .* shutdown,|' + r'AH03066: .* FRAME\[GOAWAY.*) remote.emitted=1') url = env.mkurl("https", "cgi", "/") opt = [] for i in range(10): @@ -263,7 +264,8 @@ class TestInvalidHeaders: conf.add_vhost_cgi() conf.install() assert env.apache_restart() == 0 - re_emitted = re.compile(r'.* AH03401: .* shutdown, remote.emitted=1') + re_emitted = re.compile(r'.* (AH03401: .* shutdown,|' + r'AH03066: .* FRAME\[GOAWAY.*) remote.emitted=1') url = env.mkurl("https", "cgi", "/") opt = [] for i in range(100): |