Author: jan
Date: Wed Mar 17 22:20:04 2010
New Revision: 924525
URL: http://svn.apache.org/viewvc?rev=924525&view=rev
Log:
Wait a little longer, this should help slower systems.
Idaelly, this test should be changed to not require
the `timer:sleep()` call at all.
Modified:
couchdb/branches/0.11.x/test/etap/130-attachments-md5.t
Modified: couchdb/branches/0.11.x/test/etap/130-attachments-md5.t
URL:
http://svn.apache.org/viewvc/couchdb/branches/0.11.x/test/etap/130-attachments-md5.t?rev=924525&r1=924524&r2=924525&view=diff
==============================================================================
--- couchdb/branches/0.11.x/test/etap/130-attachments-md5.t (original)
+++ couchdb/branches/0.11.x/test/etap/130-attachments-md5.t Wed Mar 17 22:20:04
2010
@@ -227,7 +227,7 @@ get_socket() ->
do_request(Request) ->
Sock = get_socket(),
gen_tcp:send(Sock, list_to_binary(lists:flatten(Request))),
- timer:sleep(100),
+ timer:sleep(200),
{ok, R} = gen_tcp:recv(Sock, 0),
gen_tcp:close(Sock),
[Header, Body] = re:split(R, "\r\n\r\n", [{return, binary}]),