summaryrefslogtreecommitdiff
path: root/spec/ruby/core/array/reject_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/array/reject_spec.rb')
-rw-r--r--spec/ruby/core/array/reject_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/array/reject_spec.rb b/spec/ruby/core/array/reject_spec.rb
index 2dba6f58e7..d9b0ca5429 100644
--- a/spec/ruby/core/array/reject_spec.rb
+++ b/spec/ruby/core/array/reject_spec.rb
@@ -9,9 +9,9 @@ describe "Array#reject" do
ary = [1, 2, 3, 4, 5]
ary.reject { true }.should == []
ary.reject { false }.should == ary
- ary.reject { false }.object_id.should_not == ary.object_id
+ ary.reject { false }.should_not equal ary
ary.reject { nil }.should == ary
- ary.reject { nil }.object_id.should_not == ary.object_id
+ ary.reject { nil }.should_not equal ary
ary.reject { 5 }.should == []
ary.reject { |i| i < 3 }.should == [3, 4, 5]
ary.reject { |i| i % 2 == 0 }.should == [1, 3, 5]