From 3c92516519bf0cf3ed586462f947ed8c4ed64abd Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Fri, 19 Nov 2021 10:00:13 -0800 Subject: [PATCH] Fix test_super_with_anonymous_block test to use anonymous block --- test/ruby/test_iseq.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ruby/test_iseq.rb b/test/ruby/test_iseq.rb index 49f12019dc..816875e6fc 100644 --- a/test/ruby/test_iseq.rb +++ b/test/ruby/test_iseq.rb @@ -127,7 +127,7 @@ class TestISeq < Test::Unit::TestCase def test_super_with_anonymous_block iseq = compile(<<~EOF) - def touch3(&block) # :nodoc: + def touch3(&) # :nodoc: foo { super } end 42