diff options
author | Jan Lehnardt <jan@apache.org> | 2010-03-17 22:19:47 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2010-03-17 22:19:47 +0000 |
commit | 6f324cd451fb5778ee4bd6d1758473c450b8ef31 (patch) | |
tree | eb742a3210fca5161033e8cd3ff4fff7545db7b4 | |
parent | 35ea57d180d77b9585e8742e48040389199862e1 (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
-rwxr-xr-x | test/etap/130-attachments-md5.t | 2 |
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}]), |