1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Increase the number of Process.times attempts

CI of 5806c54447 did not succeed
https://travis-ci.org/github/ruby/ruby/jobs/668072714
This commit is contained in:
Takashi Kokubun 2020-03-28 15:23:28 -07:00
parent 92c25114ab
commit cf191872fd
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD

View file

@ -25,7 +25,7 @@ describe "Process.times" do
skip "getrusage is not supported on this environment"
end
found = (max * 10).times.find do
found = (max * 100).times.find do
time = Process.times.utime
('%.6f' % time).end_with?('000')
end