Browse Source

Increase the timetrap timeout in req_SUITE on Windows

Still seeing intermittent failures on Windows due to
timetrap so let's see if doubling the timeout again helps.
Loïc Hoguin 5 years ago
parent
commit
0d0e7d164c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/req_SUITE.erl

+ 1 - 1
test/req_SUITE.erl

@@ -24,7 +24,7 @@
 
 
 suite() ->
 suite() ->
 	Timeout = case os:type() of
 	Timeout = case os:type() of
-		{win32, _} -> 60000;
+		{win32, _} -> 120000;
 		_ -> 30000
 		_ -> 30000
 	end,
 	end,
 	[{timetrap, Timeout}].
 	[{timetrap, Timeout}].