diff http_method.t @ 1957:c544b7120a6d

Tests: removed dependencies on 405 error text. It is going to be changed from "405 Not Allowed" to "405 Method Not Allowed" to match RFC description.
author Maxim Dounin <mdounin@mdounin.ru>
date Sat, 20 Apr 2024 20:58:42 +0300
parents 2a0a6035a1af
children
line wrap: on
line diff
--- a/http_method.t
+++ b/http_method.t
@@ -49,7 +49,7 @@ EOF
 
 ###############################################################################
 
-like(http(<<EOF), qr/405 Not Allowed(?!.*200 OK)/s, 'trace');
+like(http(<<EOF), qr/ 405 (?!.*200 OK)/s, 'trace');
 TRACE / HTTP/1.1
 Host: localhost
 
@@ -59,7 +59,7 @@ Connection: close
 
 EOF
 
-like(http(<<EOF), qr/405 Not Allowed(?!.*200 OK)/s, 'connect');
+like(http(<<EOF), qr/ 405 (?!.*200 OK)/s, 'connect');
 CONNECT / HTTP/1.1
 Host: localhost