diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2018-02-17 10:08:51 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2018-02-17 10:08:51 +0900 |
commit | 933bbb9c372d3365be57aa11fdf5922b139c93dc (patch) | |
tree | fd38b448ac611e8fd241cf9402700ebef9e4e96f /railties/test | |
parent | 89bcca59e91fa9da941de890012872e8288e77b0 (diff) | |
download | rails-933bbb9c372d3365be57aa11fdf5922b139c93dc.tar.gz rails-933bbb9c372d3365be57aa11fdf5922b139c93dc.tar.bz2 rails-933bbb9c372d3365be57aa11fdf5922b139c93dc.zip |
Remove needless print
It seems to debug print.
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/application/test_runner_test.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/railties/test/application/test_runner_test.rb b/railties/test/application/test_runner_test.rb index 399a718e4a..8e5ccf94cc 100644 --- a/railties/test/application/test_runner_test.rb +++ b/railties/test/application/test_runner_test.rb @@ -534,7 +534,6 @@ module ApplicationTests app_path("/test/test_helper.rb") do |file_name| file = File.read(file_name) file.sub!(/parallelize\(([^\)]*)\)/, "parallelize(\\1, with: :threads)") - puts file File.write(file_name, file) end |