summaryrefslogtreecommitdiff
path: root/spec/ruby/core/io/binread_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/io/binread_spec.rb')
-rw-r--r--spec/ruby/core/io/binread_spec.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/spec/ruby/core/io/binread_spec.rb b/spec/ruby/core/io/binread_spec.rb
index b7ab8e7fbc..5e936ac6ba 100644
--- a/spec/ruby/core/io/binread_spec.rb
+++ b/spec/ruby/core/io/binread_spec.rb
@@ -41,9 +41,7 @@ describe "IO.binread" do
lambda { IO.binread @fname, -1 }.should raise_error(ArgumentError)
end
- ruby_version_is "2.3" do # MRI leaks the fd on older versions
- it "raises an Errno::EINVAL when not passed a valid offset" do
- lambda { IO.binread @fname, 0, -1 }.should raise_error(Errno::EINVAL)
- end
+ it "raises an Errno::EINVAL when not passed a valid offset" do
+ lambda { IO.binread @fname, 0, -1 }.should raise_error(Errno::EINVAL)
end
end