summaryrefslogtreecommitdiff
path: root/spec/ruby/core/method/shared/call.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/method/shared/call.rb')
-rw-r--r--spec/ruby/core/method/shared/call.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/method/shared/call.rb b/spec/ruby/core/method/shared/call.rb
index f178b9da7d..f26e373695 100644
--- a/spec/ruby/core/method/shared/call.rb
+++ b/spec/ruby/core/method/shared/call.rb
@@ -9,10 +9,10 @@ describe :method_call, shared: true do
end
it "raises an ArgumentError when given incorrect number of arguments" do
- lambda {
+ -> {
MethodSpecs::Methods.new.method(:two_req).send(@method, 1, 2, 3)
}.should raise_error(ArgumentError)
- lambda {
+ -> {
MethodSpecs::Methods.new.method(:two_req).send(@method, 1)
}.should raise_error(ArgumentError)
end