"rake test:coverage" fails in Ruby 2.5 and 2.6 (#30967).

This commit fixes a wrong change done in r17938.


git-svn-id: http://svn.redmine.org/redmine/trunk@18120 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2019-05-04 01:24:38 +00:00
parent dea03717b9
commit c8bc3fa2aa

View File

@@ -26,11 +26,11 @@ module Redmine
class HtmlFormatter
def format(result)
File.open(File.join(output_path, "index.html"), "w") do |file|
file.puts template('index').result(binding).force_encoding('utf-8')
file.puts template('index').result(binding)
end
result.source_files.each do |source_file|
File.open(File.join(output_path, source_file_result(source_file)), "w") do |file|
file.puts template('source').result(binding)
file.puts template('source').result(binding).force_encoding('utf-8')
end
end
end