summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/ruby/test_iseq.rb2
1 files changed, 1 insertions, 1 deletions
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