From b2f3e4ff6fc2183e7769baf9b39407ee5ffa55f6 Mon Sep 17 00:00:00 2001 From: Hiroshi Nakamura Date: Wed, 11 Jan 2012 13:43:46 +0900 Subject: [PATCH] Revert "Temporal fix for spec failure" This reverts commit f0c769d84dce2f589db476a5989cbcebba9f8b11. --- spec/regression/JRUBY-6324_random_srand_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/regression/JRUBY-6324_random_srand_spec.rb b/spec/regression/JRUBY-6324_random_srand_spec.rb index 55f6c20f111..416a09d1a58 100644 --- a/spec/regression/JRUBY-6324_random_srand_spec.rb +++ b/spec/regression/JRUBY-6324_random_srand_spec.rb @@ -9,6 +9,6 @@ it "initializes initial seed for PRNG" do rt = Java.org.jruby.embed.ScriptingContainer.new id1, id2 = rt.run_scriptlet("n = 2**128; srand(n); [n.object_id, srand.object_id]") - (id1 == id2).should == true + id1.should == id2 end end