aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/signal/signame_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/signal/signame_spec.rb')
-rw-r--r--spec/ruby/core/signal/signame_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/signal/signame_spec.rb b/spec/ruby/core/signal/signame_spec.rb
index 41b43d3482..b66de9fc85 100644
--- a/spec/ruby/core/signal/signame_spec.rb
+++ b/spec/ruby/core/signal/signame_spec.rb
@@ -10,7 +10,7 @@ describe "Signal.signame" do
end
it "raises a TypeError when the passed argument can't be coerced to Integer" do
- lambda { Signal.signame("hello") }.should raise_error(TypeError)
+ -> { Signal.signame("hello") }.should raise_error(TypeError)
end
platform_is_not :windows do