summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorPeter Zhu <peter@peterzhu.ca>2021-11-10 17:13:20 -0500
committerPeter Zhu <peter@peterzhu.ca>2021-11-10 17:14:50 -0500
commitd5dd87d0db7270d5845ec016b3436fba608e27d7 (patch)
tree1c3c43ed003d422f891b75eaa049e696a6e82ba8 /test/ruby
parent98cc6d158b501a4c30aa578239b35085a4612b94 (diff)
[ci skip] Fix typo in test name
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/5102
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_settracefunc.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_settracefunc.rb b/test/ruby/test_settracefunc.rb
index c6955467c4..4a37426531 100644
--- a/test/ruby/test_settracefunc.rb
+++ b/test/ruby/test_settracefunc.rb
@@ -565,7 +565,7 @@ class TestSetTraceFunc < Test::Unit::TestCase
end
# Bug #18264
- def test_tracpoint_memory_leak
+ def test_tracepoint_memory_leak
assert_no_memory_leak([], <<-PREP, <<-CODE, rss: true)
code = proc { TracePoint.new(:line) { } }
1_000.times(&code)