aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators/app_generator_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/test/generators/app_generator_test.rb')
-rw-r--r--railties/test/generators/app_generator_test.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/test/generators/app_generator_test.rb b/railties/test/generators/app_generator_test.rb
index c949d9a3b0..45f991f681 100644
--- a/railties/test/generators/app_generator_test.rb
+++ b/railties/test/generators/app_generator_test.rb
@@ -369,7 +369,8 @@ class AppGeneratorTest < Rails::Generators::TestCase
def test_http_only_generates_application_controller_with_action_controller_http
run_generator [destination_root, "--http-only"]
- assert_file "app/controllers/application_controller.rb", /class ApplicationController < ActionController::HTTP/
+ assert_file "app/controllers/application_controller.rb",
+ /class ApplicationController < ActionController::HTTP/
end
def test_http_only_generates_application_controller_with_protect_from_forgery_commented_out_setup