changeset 768:5fd4f459e0d9

Tests: removed h2.t header split TODO, fixed in b930e598a199.
author Sergey Kandaurov <pluknet@nginx.com>
date Wed, 28 Oct 2015 00:28:18 +0300
parents fc846cf75c34
children 97442d620e3e
files h2.t
diffstat 1 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/h2.t
+++ b/h2.t
@@ -1852,9 +1852,6 @@ cmp_ok($data[-1], '<=', 2**14, 'no body 
 
 # response header block is always split by SETTINGS_MAX_FRAME_SIZE
 
-TODO: {
-local $TODO = 'not yet';
-
 $sess = new_session();
 $sid = new_stream($sess, { path => '/continuation?h=' . 'x' x 2**15 });
 
@@ -1863,8 +1860,6 @@ local $TODO = 'not yet';
 @data = sort { $a <=> $b } map { $_->{length} } @data;
 cmp_ok($data[-1], '<=', 2**14, 'response header frames limited');
 
-}
-
 # max_field_size
 
 TODO: {