summaryrefslogtreecommitdiff
path: root/spec/ruby/core/integer/shared/equal.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/integer/shared/equal.rb')
-rw-r--r--spec/ruby/core/integer/shared/equal.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/integer/shared/equal.rb b/spec/ruby/core/integer/shared/equal.rb
index 4a5a236ffa..ecee17831c 100644
--- a/spec/ruby/core/integer/shared/equal.rb
+++ b/spec/ruby/core/integer/shared/equal.rb
@@ -4,7 +4,7 @@ describe :integer_equal, shared: true do
1.send(@method, 1).should == true
9.send(@method, 5).should == false
- # Actually, these call Float#==, Bignum#== etc.
+ # Actually, these call Float#==, Integer#== etc.
9.send(@method, 9.0).should == true
9.send(@method, 9.01).should == false