summaryrefslogtreecommitdiff
path: root/spec/ruby/core/integer/integer_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/integer/integer_spec.rb')
-rw-r--r--spec/ruby/core/integer/integer_spec.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/spec/ruby/core/integer/integer_spec.rb b/spec/ruby/core/integer/integer_spec.rb
index 6db2d50346..f8067cda06 100644
--- a/spec/ruby/core/integer/integer_spec.rb
+++ b/spec/ruby/core/integer/integer_spec.rb
@@ -5,11 +5,9 @@ describe "Integer" do
Integer.include?(Comparable).should == true
end
- ruby_version_is "2.4" do
- it "is the class of both small and large integers" do
- 42.class.should equal(Integer)
- bignum_value.class.should equal(Integer)
- end
+ it "is the class of both small and large integers" do
+ 42.class.should equal(Integer)
+ bignum_value.class.should equal(Integer)
end
end