aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/proc/shared/call_arguments.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/proc/shared/call_arguments.rb')
-rw-r--r--spec/ruby/core/proc/shared/call_arguments.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/proc/shared/call_arguments.rb b/spec/ruby/core/proc/shared/call_arguments.rb
index a937bd99d0..ef6ec04620 100644
--- a/spec/ruby/core/proc/shared/call_arguments.rb
+++ b/spec/ruby/core/proc/shared/call_arguments.rb
@@ -1,7 +1,7 @@
describe :proc_call_block_args, shared: true do
it "can receive block arguments" do
Proc.new {|&b| b.send(@method)}.send(@method) {1 + 1}.should == 2
- lambda {|&b| b.send(@method)}.send(@method) {1 + 1}.should == 2
+ ->&b { b.send(@method)}.send(@method) {1 + 1}.should == 2
proc {|&b| b.send(@method)}.send(@method) {1 + 1}.should == 2
end