mirror of
https://github.com/redmine/redmine.git
synced 2025-11-01 02:46:13 +01:00
"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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user