aboutsummaryrefslogtreecommitdiffstats
path: root/test/rfc7540_SUITE.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/rfc7540_SUITE.erl')
-rw-r--r--test/rfc7540_SUITE.erl8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/rfc7540_SUITE.erl b/test/rfc7540_SUITE.erl
index 4f27dfa..ebd9341 100644
--- a/test/rfc7540_SUITE.erl
+++ b/test/rfc7540_SUITE.erl
@@ -34,11 +34,15 @@ groups() ->
init_per_group(Name = clear, Config) ->
cowboy_test:init_http(Name, #{
- env => #{dispatch => cowboy_router:compile(init_routes(Config))}
+ env => #{dispatch => cowboy_router:compile(init_routes(Config))},
+ %% Disable the DATA threshold for this test suite.
+ stream_window_data_threshold => 0
}, Config);
init_per_group(Name = tls, Config) ->
cowboy_test:init_http2(Name, #{
- env => #{dispatch => cowboy_router:compile(init_routes(Config))}
+ env => #{dispatch => cowboy_router:compile(init_routes(Config))},
+ %% Disable the DATA threshold for this test suite.
+ stream_window_data_threshold => 0
}, Config).
end_per_group(Name, _) ->