From aa7f2592d83370c763e41dbef178cba31e64b738 Mon Sep 17 00:00:00 2001 From: eregon Date: Sat, 1 Jul 2017 21:17:25 +0000 Subject: Used a fixed seed in Random#rand spec git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59248 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- spec/rubyspec/core/random/rand_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'spec/rubyspec') diff --git a/spec/rubyspec/core/random/rand_spec.rb b/spec/rubyspec/core/random/rand_spec.rb index 2f10ed080a..e0cb133abd 100644 --- a/spec/rubyspec/core/random/rand_spec.rb +++ b/spec/rubyspec/core/random/rand_spec.rb @@ -172,13 +172,13 @@ describe "Random#rand with Range" do end it "works with inclusive ranges" do - prng = Random.new + prng = Random.new 33 r = 3..5 40.times.map { prng.rand(r) }.uniq.sort.should == [3,4,5] end it "works with exclusive ranges" do - prng = Random.new + prng = Random.new 33 r = 3...5 20.times.map { prng.rand(r) }.uniq.sort.should == [3,4] end -- cgit v1.2.3