# HG changeset patch # User Sergey Kandaurov # Date 1442933538 -10800 # Node ID 01e5d5717815dcb8cfc85cad0cdfca353f07ae7a # Parent 875f9c2528fc6e5693f117bd2a251d2f09e098f4 Tests: removed now superfluous output_buffers from HTTP/2 tests. The default value has been changed in nginx. diff -r 875f9c2528fc -r 01e5d5717815 h2.t --- a/h2.t Tue Sep 22 17:25:58 2015 +0300 +++ b/h2.t Tue Sep 22 17:52:18 2015 +0300 @@ -52,7 +52,6 @@ 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 @@ 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');