1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Koichi Sasada 2020-03-04 11:36:34 +09:00
parent 02705b27be
commit ce586107d8

View file

@ -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)