From f3e927b0cc1fcbf03abea7f66b1a3736a270a8de Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Wed, 10 Jun 2020 15:17:54 -0700 Subject: Make proc/Proc.new without block an error instead of warning The warning for these was added in 2.7. --- bootstraptest/test_proc.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bootstraptest/test_proc.rb') diff --git a/bootstraptest/test_proc.rb b/bootstraptest/test_proc.rb index 6d2c557c3c..637603243d 100644 --- a/bootstraptest/test_proc.rb +++ b/bootstraptest/test_proc.rb @@ -367,8 +367,8 @@ assert_equal 'ok', %q{ assert_equal 'ok', %q{ class Foo - def call_it - p = Proc.new + def call_it(&block) + p = Proc.new(&block) p.call end end -- cgit v1.2.3