aboutsummaryrefslogtreecommitdiffstats
path: root/test/shutdown_SUITE.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/shutdown_SUITE.erl')
-rw-r--r--test/shutdown_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/shutdown_SUITE.erl b/test/shutdown_SUITE.erl
index 4cc2566..b7a4c7e 100644
--- a/test/shutdown_SUITE.erl
+++ b/test/shutdown_SUITE.erl
@@ -61,7 +61,7 @@ not_connected_gun_shutdown(_) ->
ConnRef = monitor(process, ConnPid),
gun:shutdown(ConnPid),
Timeout = case os:type() of
- {win32, _} -> 2000;
+ {win32, _} -> 5000;
_ -> 1000
end,
gun_is_down(ConnPid, ConnRef, shutdown, Timeout).
@@ -87,7 +87,7 @@ do_not_connected_owner_down(ExitReason, DownReason) ->
ConnPid = receive {conn, C} -> C after 1000 -> error(timeout) end,
ConnRef = monitor(process, ConnPid),
Timeout = case os:type() of
- {win32, _} -> 2000;
+ {win32, _} -> 5000;
_ -> 1000
end,
gun_is_down(ConnPid, ConnRef, DownReason, Timeout).