summaryrefslogtreecommitdiff
path: root/spec/ruby/core/hash/clone_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/hash/clone_spec.rb')
-rw-r--r--spec/ruby/core/hash/clone_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/hash/clone_spec.rb b/spec/ruby/core/hash/clone_spec.rb
index 188ae1c807..c9e7b1fe65 100644
--- a/spec/ruby/core/hash/clone_spec.rb
+++ b/spec/ruby/core/hash/clone_spec.rb
@@ -7,7 +7,7 @@ describe "Hash#clone" do
clone = hash.clone
clone.should == hash
- clone.object_id.should_not == hash.object_id
+ clone.should_not equal hash
end
end