Increase memory leak test timeout

The test times out on some platforms, so increase the timeout.
This commit is contained in:
Peter Zhu 2023-06-28 11:35:23 -04:00
parent 78ecb93f9d
commit 27d3fa2af0
Notes: git 2023-06-28 17:48:08 +00:00

View File

@ -143,7 +143,7 @@ end
def test_no_memory_leak
assert_no_memory_leak(%w(-rripper), "", "#{<<~'end;'}", rss: true)
10_000_000.times do
2_000_000.times do
Ripper.parse("")
end
end;