diff options
author | George Claghorn <george.claghorn@gmail.com> | 2017-08-21 22:48:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-21 22:48:47 -0400 |
commit | 38952d8a4a13d2d54156011e6f43a1ca2740745c (patch) | |
tree | b8d51b912e946c5fa1190e1102bba19293e07f12 /railties/test/generators | |
parent | 3fdfe21db8c295a2805e6b137a9599d46dbc67df (diff) | |
parent | 7c86c62284631d007b2123f96bb490876c06b201 (diff) | |
download | rails-38952d8a4a13d2d54156011e6f43a1ca2740745c.tar.gz rails-38952d8a4a13d2d54156011e6f43a1ca2740745c.tar.bz2 rails-38952d8a4a13d2d54156011e6f43a1ca2740745c.zip |
Merge pull request #30348 from koic/remove_frozen_string_literal_from_templates
Remove frozen_string_literal magic comment from templates
Diffstat (limited to 'railties/test/generators')
-rw-r--r-- | railties/test/generators/actions_test.rb | 2 |
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' |