diff http_uri.t @ 1937:2a0a6035a1af

Tests: removed TODO and try_run() checks for legacy versions.
author Sergey Kandaurov <pluknet@nginx.com>
date Fri, 25 Aug 2023 18:12:08 +0400
parents e4e711d07e6c
children
line wrap: on
line diff
--- a/http_uri.t
+++ b/http_uri.t
@@ -76,20 +76,9 @@ like(http_get('http://localhost:8080?arg
 like(http_get('http://localhost:8080?args#frag'), qr!x / x.*y args y!ms,
 	'port args and frag');
 
-TODO: {
-local $TODO = 'not yet' unless $t->has_version('1.21.1');
-
 like(http_get('/ /'), qr/400 Bad/, 'space');
-
-}
-
-TODO: {
-local $TODO = 'not yet' unless $t->has_version('1.21.1');
-
 like(http_get("/\x02"), qr/400 Bad/, 'control');
 
-}
-
 like(http_get('/%02'), qr!x /\x02 x!, 'control escaped');
 
 ###############################################################################