summaryrefslogtreecommitdiff
path: root/test/ruby/test_iseq.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_iseq.rb')
-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 2b3282d5fb..692549efa0 100644
--- a/test/ruby/test_iseq.rb
+++ b/test/ruby/test_iseq.rb
@@ -107,7 +107,7 @@ class TestISeq < Test::Unit::TestCase
def test_super_with_block_and_kwrest
iseq = compile(<<~EOF)
- def touch(**) # :nodoc:
+ def touch2(**) # :nodoc:
foo { super }
end
42