From e3efce6df1aa691e17c59f442b35b4fd129d3a13 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 9 Oct 2012 09:01:40 +0000 Subject: array.c: use rb_random_ulong_limited * array.c (rb_ary_sample): use rb_random_ulong_limited, since precision of long may be larger than double. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_array.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/ruby/test_array.rb') diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb index 60b08cd1bc..b4115ac5dd 100644 --- a/test/ruby/test_array.rb +++ b/test/ruby/test_array.rb @@ -2019,15 +2019,15 @@ class TestArray < Test::Unit::TestCase def test_sample_random ary = (0...10000).to_a assert_raise(ArgumentError) {ary.sample(1, 2, random: nil)} - gen0 = proc do - 0.5 + gen0 = proc do |max| + (max+1)/2 end class << gen0 alias rand call end - gen1 = proc do + gen1 = proc do |max| ary.replace([]) - 0.5 + (max+1)/2 end class << gen1 alias rand call -- cgit v1.2.3