summaryrefslogtreecommitdiff
path: root/spec/ruby/core/process/times_spec.rb
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2020-03-28 15:23:28 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2020-03-28 15:23:30 -0700
commitcf191872fdeade823b4c49b53ec9b28d66a5c402 (patch)
tree3a37b144cf893ced1ddc691b30d8abcd151dac19 /spec/ruby/core/process/times_spec.rb
parent92c25114ab954643dc80f3a1765b53e87ce38d4c (diff)
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/ruby/core/process/times_spec.rb')
-rw-r--r--spec/ruby/core/process/times_spec.rb2
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