aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2017-05-19 20:18:00 +0200
committerLoïc Hoguin <[email protected]>2017-05-19 20:18:00 +0200
commitf3e5f3e410b6fd2dbf8cd69a00245131c8f0ff4c (patch)
treeed83f8fbda345a92b2e2a6b3f0903cbdb9e3cc71 /test
parent304e3efbf84bcee9e2f28480da85635800949cbe (diff)
downloadcowboy-f3e5f3e410b6fd2dbf8cd69a00245131c8f0ff4c.tar.gz
cowboy-f3e5f3e410b6fd2dbf8cd69a00245131c8f0ff4c.tar.bz2
cowboy-f3e5f3e410b6fd2dbf8cd69a00245131c8f0ff4c.zip
Preliminary h2 flow control support
Existing tests pass. A number of things remain to be done. Has only been tested with Gun so far. Feedback welcome!
Diffstat (limited to 'test')
-rw-r--r--test/req_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/req_SUITE.erl b/test/req_SUITE.erl
index fe1b826..a2c040e 100644
--- a/test/req_SUITE.erl
+++ b/test/req_SUITE.erl
@@ -49,10 +49,10 @@ init_dispatch(Config) ->
{"/resp/:key[/:arg]", resp_h, []},
{"/multipart[/:key]", multipart_h, []},
{"/args/:key/:arg[/:default]", echo_h, []},
- {"/crash/:key/period", echo_h, #{length => infinity, period => 1000, crash => true}},
+ {"/crash/:key/period", echo_h, #{length => 999999999, period => 1000, crash => true}},
{"/no-opts/:key", echo_h, #{crash => true}},
{"/opts/:key/length", echo_h, #{length => 1000}},
- {"/opts/:key/period", echo_h, #{length => infinity, period => 1000}},
+ {"/opts/:key/period", echo_h, #{length => 999999999, period => 1000}},
{"/opts/:key/timeout", echo_h, #{timeout => 1000, crash => true}},
{"/full/:key", echo_h, []},
{"/no/:key", echo_h, []},