aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/thread/priority_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/thread/priority_spec.rb')
-rw-r--r--spec/ruby/core/thread/priority_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/thread/priority_spec.rb b/spec/ruby/core/thread/priority_spec.rb
index 5da6216b53..e13ad478b5 100644
--- a/spec/ruby/core/thread/priority_spec.rb
+++ b/spec/ruby/core/thread/priority_spec.rb
@@ -59,7 +59,7 @@ describe "Thread#priority=" do
describe "when set with a non-integer" do
it "raises a type error" do
- lambda{ @thread.priority = Object.new }.should raise_error(TypeError)
+ ->{ @thread.priority = Object.new }.should raise_error(TypeError)
end
end