summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJan Lehnardt <jan@apache.org>2010-03-17 22:19:47 +0000
committerJan Lehnardt <jan@apache.org>2010-03-17 22:19:47 +0000
commit6f324cd451fb5778ee4bd6d1758473c450b8ef31 (patch)
treeeb742a3210fca5161033e8cd3ff4fff7545db7b4 /test
parent35ea57d180d77b9585e8742e48040389199862e1 (diff)
Wait a little longer, this should help slower systems.
Idaelly, this test should be changed to not require the `timer:sleep()` call at all. git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@924524 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rwxr-xr-xtest/etap/130-attachments-md5.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/etap/130-attachments-md5.t b/test/etap/130-attachments-md5.t
index fe6732d6..eac4d8d8 100755
--- a/test/etap/130-attachments-md5.t
+++ b/test/etap/130-attachments-md5.t
@@ -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}]),