changeset 1565:84a1e16819e5

Tests: js TODO adjusted.
author Dmitry Volyntsev <xeioex@nginx.com>
date Wed, 29 Apr 2020 12:33:04 +0000
parents fe938b5daf80
children 5cf2f4da8bd5
files js_headers.t
diffstat 1 files changed, 0 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/js_headers.t
+++ b/js_headers.t
@@ -375,11 +375,6 @@ like(http(
 	. 'Host: localhost' . CRLF . CRLF
 ), qr/x-forwarded-for: foo/, 'r.headersIn xff');
 
-
-TODO: {
-local $TODO = 'not yet'
-	unless http_get('/njs') =~ /^([.0-9]+)$/m && $1 ge '0.3.6';
-
 like(http(
 	'GET /hdr_in HTTP/1.0' . CRLF
 	. 'Cookie: foo1' . CRLF
@@ -394,12 +389,6 @@ like(http(
 	. 'Host: localhost' . CRLF . CRLF
 ), qr/x-forwarded-for: foo1, foo2/, 'r.headersIn xff2');
 
-}
-
-TODO: {
-local $TODO = 'not yet'
-	unless http_get('/njs') =~ /^([.0-9]+)$/m && $1 ge '0.3.7';
-
 like(http(
 	'GET /hdr_sorted_keys?in=1 HTTP/1.0' . CRLF
 	. 'Cookie: foo1' . CRLF
@@ -413,6 +402,4 @@ like(http(
 	. 'Host: localhost' . CRLF . CRLF
 ), qr/a,b,c/, 'r.headersOut sorted keys');
 
-}
-
 ###############################################################################