summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2024-11-21 12:14:49 +0900
committernagachika <nagachika@ruby-lang.org>2024-11-22 08:06:01 +0900
commitd3098d2068770f8bdeca8fda06736cbebb8d3a5b (patch)
tree77e1f016f401d4fb812fad7d82c3d66e04990454 /test
parent9e1a78059dc1c2bee1159f7626a15de689f4fc1c (diff)
Removed extra assertions for Ruby 3.2
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_gc_compact.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/ruby/test_gc_compact.rb b/test/ruby/test_gc_compact.rb
index 8beae17b86..3ccd2deb07 100644
--- a/test/ruby/test_gc_compact.rb
+++ b/test/ruby/test_gc_compact.rb
@@ -382,7 +382,6 @@ class TestGCCompact < Test::Unit::TestCase
stats = GC.verify_compaction_references(expand_heap: true, toward: :empty)
assert_operator(stats.dig(:moved_up, :T_OBJECT) || 0, :>=, OBJ_COUNT)
- refute_empty($ary.keep_if { |o| ObjectSpace.dump(o).include?('"embedded":true') })
end;
end