diff options
author | Takashi Kokubun <takashikkbn@gmail.com> | 2020-03-28 15:23:28 -0700 |
---|---|---|
committer | Takashi Kokubun <takashikkbn@gmail.com> | 2020-03-28 15:23:30 -0700 |
commit | cf191872fdeade823b4c49b53ec9b28d66a5c402 (patch) | |
tree | 3a37b144cf893ced1ddc691b30d8abcd151dac19 /spec | |
parent | 92c25114ab954643dc80f3a1765b53e87ce38d4c (diff) | |
download | ruby-cf191872fdeade823b4c49b53ec9b28d66a5c402.tar.gz |
Increase the number of Process.times attempts
CI of 5806c54447439f2ba22892e4045e78dd80f96f0c did not succeed
https://travis-ci.org/github/ruby/ruby/jobs/668072714
Diffstat (limited to 'spec')
-rw-r--r-- | spec/ruby/core/process/times_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/process/times_spec.rb b/spec/ruby/core/process/times_spec.rb index 2ec9924d16..57595c321a 100644 --- a/spec/ruby/core/process/times_spec.rb +++ b/spec/ruby/core/process/times_spec.rb @@ -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 |