diff options
Diffstat (limited to 'test/rdoc/test_rdoc_ri_paths.rb')
-rw-r--r-- | test/rdoc/test_rdoc_ri_paths.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rdoc/test_rdoc_ri_paths.rb b/test/rdoc/test_rdoc_ri_paths.rb index b0f368353a..eb9b7fc93c 100644 --- a/test/rdoc/test_rdoc_ri_paths.rb +++ b/test/rdoc/test_rdoc_ri_paths.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -require 'rdoc/test_case' +require 'minitest_helper' class TestRDocRIPaths < RDoc::TestCase @@ -22,7 +22,7 @@ class TestRDocRIPaths < RDoc::TestCase specs.each do |spec| spec.loaded_from = spec.spec_file - open spec.spec_file, 'w' do |file| + File.open spec.spec_file, 'w' do |file| file.write spec.to_ruby_for_cache end |