From 05527639d03daa8156e3c388cce2b47d4dfb5478 Mon Sep 17 00:00:00 2001 From: naruse Date: Wed, 4 Nov 2009 19:01:41 +0000 Subject: Decrease counts of tests which spend so long time. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25651 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_array.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/ruby/test_array.rb') diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb index 25bf5955e..079719044 100644 --- a/test/ruby/test_array.rb +++ b/test/ruby/test_array.rb @@ -1612,7 +1612,7 @@ class TestArray < Test::Unit::TestCase srand(0) a = (1..18).to_a (0..20).each do |n| - 10000.times do + 100.times do b = a.sample(n) assert_equal([n, 18].min, b.uniq.size) assert_equal(a, (a | b).sort) @@ -1620,7 +1620,7 @@ class TestArray < Test::Unit::TestCase end h = Hash.new(0) - 10000.times do + 1000.times do a.sample(n).each {|x| h[x] += 1 } end assert_operator(h.values.min * 2, :>=, h.values.max) if n != 0 -- cgit