summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2020-03-04 11:36:34 +0900
committerKoichi Sasada <ko1@atdot.net>2020-03-04 11:36:34 +0900
commitce586107d8da0d6dff1a62d500be1bc2c1cbe9b4 (patch)
tree1005dc38b5e1e151c5fc258bf9c8de1e8fb40f7d /test/ruby
parent02705b27be207fce57bd0253251f81108c7ed57b (diff)
fix 6e271e4cbbe6a8bc4d4f75dc553ce054eae7af00
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_gc.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_gc.rb b/test/ruby/test_gc.rb
index a2ccc63218..53777c61a8 100644
--- a/test/ruby/test_gc.rb
+++ b/test/ruby/test_gc.rb
@@ -58,7 +58,7 @@ class TestGc < Test::Unit::TestCase
GC.start # full mark and next time it should be minor mark
GC.start(full_mark: false)
- assert_nil GC.latest_gc_info(:major_by, msg)
+ assert_nil GC.latest_gc_info(:major_by)
GC.start(full_mark: true)
assert_not_nil GC.latest_gc_info(:major_by)