summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2021-11-19 10:00:13 -0800
committerJeremy Evans <code@jeremyevans.net>2021-11-19 11:05:09 -0800
commit3c92516519bf0cf3ed586462f947ed8c4ed64abd (patch)
tree664ad8a9fed20c3575b8a87071c7bf849a2513e5 /test/ruby
parente9735ec206d24895ffb14ea7382fb38435fb16c5 (diff)
Fix test_super_with_anonymous_block test to use anonymous block
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/5147
Diffstat (limited to 'test/ruby')
-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