1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Remove needless print

It seems to debug print.
This commit is contained in:
yuuji.yaginuma 2018-02-17 10:08:51 +09:00
parent 89bcca59e9
commit 933bbb9c37

View file

@ -534,7 +534,6 @@ module ApplicationTests
app_path("/test/test_helper.rb") do |file_name| app_path("/test/test_helper.rb") do |file_name|
file = File.read(file_name) file = File.read(file_name)
file.sub!(/parallelize\(([^\)]*)\)/, "parallelize(\\1, with: :threads)") file.sub!(/parallelize\(([^\)]*)\)/, "parallelize(\\1, with: :threads)")
puts file
File.write(file_name, file) File.write(file_name, file)
end end