From c8bc3fa2aa1c4c61e687e7fc9bde21e1b7ae907d Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Sat, 4 May 2019 01:24:38 +0000 Subject: [PATCH] "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 --- test/coverage/html_formatter.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/coverage/html_formatter.rb b/test/coverage/html_formatter.rb index 2ae85bd30..9da488fb0 100644 --- a/test/coverage/html_formatter.rb +++ b/test/coverage/html_formatter.rb @@ -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