aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/dir/foreach_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/dir/foreach_spec.rb')
-rw-r--r--spec/ruby/core/dir/foreach_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/dir/foreach_spec.rb b/spec/ruby/core/dir/foreach_spec.rb
index fed0aa8065..1560b85f8a 100644
--- a/spec/ruby/core/dir/foreach_spec.rb
+++ b/spec/ruby/core/dir/foreach_spec.rb
@@ -31,7 +31,7 @@ describe "Dir.foreach" do
end
it "raises a SystemCallError if passed a nonexistent directory" do
- lambda { Dir.foreach(DirSpecs.nonexistent) {} }.should raise_error(SystemCallError)
+ -> { Dir.foreach(DirSpecs.nonexistent) {} }.should raise_error(SystemCallError)
end
it "returns an Enumerator if no block given" do