diff options
author | Loïc Hoguin <[email protected]> | 2018-11-20 10:45:14 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2018-11-20 10:45:14 +0100 |
commit | d12e0b55dc2693918c9c58457dd798236eef2a40 (patch) | |
tree | 36a19f83bcb3b99b7cc42cd4db046446084af250 /test/req_SUITE.erl | |
parent | 031b421732c71194b36c743b615460a0fd623c5a (diff) | |
download | cowboy-d12e0b55dc2693918c9c58457dd798236eef2a40.tar.gz cowboy-d12e0b55dc2693918c9c58457dd798236eef2a40.tar.bz2 cowboy-d12e0b55dc2693918c9c58457dd798236eef2a40.zip |
Increase a test timeout to get rid of intermittent failures
Diffstat (limited to 'test/req_SUITE.erl')
-rw-r--r-- | test/req_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/req_SUITE.erl b/test/req_SUITE.erl index 9520699..ac6e4a9 100644 --- a/test/req_SUITE.erl +++ b/test/req_SUITE.erl @@ -552,7 +552,7 @@ do_read_urlencoded_body_too_long(Path, Body, Config) -> {<<"content-length">>, integer_to_binary(byte_size(Body) * 2)} ]), gun:data(ConnPid, Ref, nofin, Body), - timer:sleep(1100), + timer:sleep(2000), gun:data(ConnPid, Ref, fin, Body), {response, _, 408, RespHeaders} = gun:await(ConnPid, Ref), _ = case config(protocol, Config) of |