diff options
Diffstat (limited to 'spec/ruby/core/io/bytes_spec.rb')
| -rw-r--r-- | spec/ruby/core/io/bytes_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/io/bytes_spec.rb b/spec/ruby/core/io/bytes_spec.rb index 2d2bd950f1..feeb493566 100644 --- a/spec/ruby/core/io/bytes_spec.rb +++ b/spec/ruby/core/io/bytes_spec.rb @@ -31,13 +31,13 @@ describe "IO#bytes" do it "raises an IOError on closed stream" do enum = IOSpecs.closed_io.bytes - lambda { enum.first }.should raise_error(IOError) + -> { enum.first }.should raise_error(IOError) end it "raises an IOError on an enumerator for a stream that has been closed" do enum = @io.bytes enum.first.should == 86 @io.close - lambda { enum.first }.should raise_error(IOError) + -> { enum.first }.should raise_error(IOError) end end |
