Skip to content

Commit 5a4a64d

Browse files
committed
Dir.children is 2.5+
RDoc seems still supporting outdated 2.4. https://github.com/ruby/rdoc/runs/2565344070?check_suite_focus=true#step:5:64 ``` Error: test_remove_unparseable_CVE_2021_31799(TestRDocRDoc): NoMethodError: undefined method `children' for Dir:Class /home/runner/work/rdoc/rdoc/test/rdoc/test_rdoc_rdoc.rb:467:in `block in test_remove_unparseable_CVE_2021_31799' 464: end 465: 466: assert_equal file_list, @rdoc.remove_unparseable(file_list) => 467: assert_equal file_list, Dir.children('.') 468: end 469: end 470: ```
1 parent 1eded93 commit 5a4a64d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/rdoc/test_rdoc_rdoc.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ def test_remove_unparseable_CVE_2021_31799
464464
end
465465

466466
assert_equal file_list, @rdoc.remove_unparseable(file_list)
467-
assert_equal file_list, Dir.children('.')
467+
assert_equal file_list, Dir.entries('.') - %w[. ..]
468468
end
469469
end
470470

0 commit comments

Comments
 (0)