changeset 707:01e5d5717815

Tests: removed now superfluous output_buffers from HTTP/2 tests. The default value has been changed in nginx.
author Sergey Kandaurov <pluknet@nginx.com>
date Tue, 22 Sep 2015 17:52:18 +0300
parents 875f9c2528fc
children 71a2d58c0a7f
files h2.t
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/h2.t
+++ b/h2.t
@@ -52,7 +52,6 @@ http {
 
     proxy_cache_path %%TESTDIR%%/cache    keys_zone=NAME:1m;
     limit_conn_zone  $binary_remote_addr  zone=conn:1m;
-    output_buffers 2 16k;
 
     server {
         listen       127.0.0.1:8080 http2;
@@ -1027,9 +1026,6 @@ is(@$frames, 0, 'iws - updated stream wi
 h2_window($sess, 2**16);
 $frames = h2_read($sess, all => [{ sid => $sid, fin => 1 }]);
 
-# with the default output_buffers, the remain data would be split
-# on buffers boundary into separate data frames
-
 @data = grep { $_->{type} eq "DATA" } @$frames;
 my $sum = eval join '+', map { $_->{length} } @data;
 is($sum, 81, 'iws - updated connection window');