summaryrefslogtreecommitdiff
path: root/spec/ruby/core/thread/key_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/thread/key_spec.rb')
-rw-r--r--spec/ruby/core/thread/key_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/thread/key_spec.rb b/spec/ruby/core/thread/key_spec.rb
index c4ed0f9c0d..6940cf5f28 100644
--- a/spec/ruby/core/thread/key_spec.rb
+++ b/spec/ruby/core/thread/key_spec.rb
@@ -17,8 +17,8 @@ describe "Thread#key?" do
end
it "raises exceptions on the wrong type of keys" do
- lambda { Thread.current.key? nil }.should raise_error(TypeError)
- lambda { Thread.current.key? 5 }.should raise_error(TypeError)
+ -> { Thread.current.key? nil }.should raise_error(TypeError)
+ -> { Thread.current.key? 5 }.should raise_error(TypeError)
end
it "is not shared across fibers" do