aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/test/httpd_basic_SUITE.erl
diff options
context:
space:
mode:
authorFredrik Gustafsson <[email protected]>2012-11-15 15:20:10 +0100
committerFredrik Gustafsson <[email protected]>2012-11-15 15:20:10 +0100
commit5431f00a394e4ebfd2b1691afcffdc617bb06fd1 (patch)
tree5230c800f61a46095cd2a97aa1cb7988fac71b4d /lib/inets/test/httpd_basic_SUITE.erl
parentfec356cb10757fbeb32abcfdb07f5152ca18c0de (diff)
downloadotp-5431f00a394e4ebfd2b1691afcffdc617bb06fd1.tar.gz
otp-5431f00a394e4ebfd2b1691afcffdc617bb06fd1.tar.bz2
otp-5431f00a394e4ebfd2b1691afcffdc617bb06fd1.zip
Increased waiting time to check if socket is down
Diffstat (limited to 'lib/inets/test/httpd_basic_SUITE.erl')
-rw-r--r--lib/inets/test/httpd_basic_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inets/test/httpd_basic_SUITE.erl b/lib/inets/test/httpd_basic_SUITE.erl
index f1c1c41dcb..523cf9d38c 100644
--- a/lib/inets/test/httpd_basic_SUITE.erl
+++ b/lib/inets/test/httpd_basic_SUITE.erl
@@ -288,7 +288,7 @@ slowdose(Config) when is_list(Config) ->
Port = proplists:get_value(port, Info),
{ok, Socket} = gen_tcp:connect("localhost", Port, []),
receive
- after 4000 ->
+ after 6000 ->
{error, closed} = gen_tcp:send(Socket, "Hey")
end.
find_URL_path([]) ->