summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-01 21:06:13 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-01 21:06:13 +0000
commit86300419455029ed1e1aa7d344c7e070c1e99d8d (patch)
tree42ef4de6f231d97665c2202b3e43baf3250add75 /test
parent61fcda16fd69aa3c3926af8ac30260042b89dad1 (diff)
Refix of 35206; 0.3 is too small for Ruby's timeout.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35212 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/net/ftp/test_ftp.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/net/ftp/test_ftp.rb b/test/net/ftp/test_ftp.rb
index ec19bbd8ba..a020b7d0f9 100644
--- a/test/net/ftp/test_ftp.rb
+++ b/test/net/ftp/test_ftp.rb
@@ -263,8 +263,8 @@ class FTPTest < Test::Unit::TestCase
sock.print("150 Here comes the directory listing.\r\n")
conn = TCPSocket.new(host, port)
list_lines.each_with_index do |l, i|
- if i == 0
- sleep(0.3)
+ if i == 1
+ sleep(0.5)
else
sleep(0.1)
end
@@ -377,7 +377,7 @@ class FTPTest < Test::Unit::TestCase
conn = TCPSocket.new(host, port)
binary_data.scan(/.{1,1024}/nm).each_with_index do |s, i|
if i == 1
- sleep(0.3)
+ sleep(0.5)
else
sleep(0.1)
end