changeset 1289:1e00ba2882cb

Tests: removed h2_server_push.t TODO, fixed in 3d2b0b02bd3d.
author Sergey Kandaurov <pluknet@nginx.com>
date Wed, 21 Feb 2018 19:39:38 +0300
parents eee96c138c5b
children 5ac4aae1a740
files h2_server_push.t
diffstat 1 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/h2_server_push.t
+++ b/h2_server_push.t
@@ -398,9 +398,6 @@ is($frame->{headers}->{':status'}, 400, 
 	{ name => 'accept-encoding', value => 'gzip' }]});
 $frames = $s->read(all => [{ sid => 2, fin => 1 }]);
 
-TODO: {
-local $TODO = 'not yet';
-
 ($frame) = grep { $_->{type} eq "PUSH_PROMISE" && $_->{sid} == $sid } @$frames;
 is($frame->{headers}->{'accept-encoding'}, 'gzip', 'gzip - push promise');
 
@@ -410,8 +407,6 @@ is($frame->{headers}->{'content-encoding
 ($frame) = grep { $_->{type} eq "DATA" && $_->{sid} == 2 } @$frames;
 gunzip_like($frame->{data}, qr/^PROMISED\Z/, 'gzip - response');
 
-}
-
 ###############################################################################
 
 sub gunzip_like {