aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/dir/empty_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/dir/empty_spec.rb')
-rw-r--r--spec/ruby/core/dir/empty_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/dir/empty_spec.rb b/spec/ruby/core/dir/empty_spec.rb
index 626b228439..8cc8757798 100644
--- a/spec/ruby/core/dir/empty_spec.rb
+++ b/spec/ruby/core/dir/empty_spec.rb
@@ -26,6 +26,6 @@ describe "Dir.empty?" do
end
it "raises ENOENT for nonexistent directories" do
- lambda { Dir.empty? tmp("nonexistent") }.should raise_error(Errno::ENOENT)
+ -> { Dir.empty? tmp("nonexistent") }.should raise_error(Errno::ENOENT)
end
end