aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers/loop_handler_timeout_info_h.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/handlers/loop_handler_timeout_info_h.erl')
-rw-r--r--test/handlers/loop_handler_timeout_info_h.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/handlers/loop_handler_timeout_info_h.erl b/test/handlers/loop_handler_timeout_info_h.erl
index 92f652e..7a1ccba 100644
--- a/test/handlers/loop_handler_timeout_info_h.erl
+++ b/test/handlers/loop_handler_timeout_info_h.erl
@@ -14,7 +14,7 @@ init(Req, _) ->
{cowboy_loop, Req, undefined}.
info(message, Req, State) ->
- erlang:send_after(200, self(), message),
+ erlang:send_after(500, self(), message),
{ok, Req, State, 100};
info(timeout, Req, State) ->
{stop, cowboy_req:reply(<<"299 OK!">>, Req), State}.