aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators/actions_test.rb
diff options
context:
space:
mode:
authorKoichi ITO <koic.ito@gmail.com>2017-08-22 02:51:59 +0900
committerKoichi ITO <koic.ito@gmail.com>2017-08-22 03:55:45 +0900
commit7c86c62284631d007b2123f96bb490876c06b201 (patch)
tree85339023d827cff7e870313908cea513af78aabd /railties/test/generators/actions_test.rb
parentc20b40c532ef5ec4f2dea647832ff8ffd3603816 (diff)
downloadrails-7c86c62284631d007b2123f96bb490876c06b201.tar.gz
rails-7c86c62284631d007b2123f96bb490876c06b201.tar.bz2
rails-7c86c62284631d007b2123f96bb490876c06b201.zip
Remove frozen_string_literal magic comment from templates
Diffstat (limited to 'railties/test/generators/actions_test.rb')
-rw-r--r--railties/test/generators/actions_test.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/railties/test/generators/actions_test.rb b/railties/test/generators/actions_test.rb
index e2e5aec805..e2ff3c279c 100644
--- a/railties/test/generators/actions_test.rb
+++ b/railties/test/generators/actions_test.rb
@@ -383,7 +383,6 @@ class ActionsTest < Rails::Generators::TestCase
File.open(route_path, "wb") { |file| file.write(content) }
routes = <<-F
-# frozen_string_literal: true
Rails.application.routes.draw do
root 'welcome#index'
end
@@ -394,7 +393,6 @@ F
action :route, "resources :product_lines"
routes = <<-F
-# frozen_string_literal: true
Rails.application.routes.draw do
resources :product_lines
root 'welcome#index'