diff options
author | Loïc Hoguin <[email protected]> | 2018-04-30 13:48:09 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2018-04-30 13:48:09 +0200 |
commit | 658620019c045de1a2b847f8579afdd42cef68ce (patch) | |
tree | a73f76f1b906ced3fc7f0af14c927373fce77be7 /test | |
parent | 8d1f468ac00427184c094392bb5f7a465ab04364 (diff) | |
download | cowboy-658620019c045de1a2b847f8579afdd42cef68ce.tar.gz cowboy-658620019c045de1a2b847f8579afdd42cef68ce.tar.bz2 cowboy-658620019c045de1a2b847f8579afdd42cef68ce.zip |
Reduce the time we wait during h2spec requests
Diffstat (limited to 'test')
-rw-r--r-- | test/h2spec_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/h2spec_SUITE.erl b/test/h2spec_SUITE.erl index 1eb18ee..aff4f2b 100644 --- a/test/h2spec_SUITE.erl +++ b/test/h2spec_SUITE.erl @@ -43,7 +43,7 @@ end_per_suite(_Config) -> init_dispatch() -> cowboy_router:compile([ {'_', [ - {"/", delay_hello_h, 500} + {"/", delay_hello_h, 50} ]} ]). |