diff options
author | Yoshiyuki Hirano <yhirano@me.com> | 2018-04-22 18:20:38 +0900 |
---|---|---|
committer | Yoshiyuki Hirano <yhirano@me.com> | 2018-04-22 18:20:41 +0900 |
commit | d8fca795758036e7522591acc99f202f84cad2fe (patch) | |
tree | 5312c20fd33b8b8e60c8f7fa5ac0ae3b5de3397d /railties/test | |
parent | 58e18c1aaf136e80dead3a93fc0a301066768767 (diff) | |
download | rails-d8fca795758036e7522591acc99f202f84cad2fe.tar.gz rails-d8fca795758036e7522591acc99f202f84cad2fe.tar.bz2 rails-d8fca795758036e7522591acc99f202f84cad2fe.zip |
Fix indentation manually
Rubocop auto-correct doesn't work well, so I fixed indentation manually.
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/generators/app_generator_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/generators/app_generator_test.rb b/railties/test/generators/app_generator_test.rb index cd607ca8d8..d6b98eb4d5 100644 --- a/railties/test/generators/app_generator_test.rb +++ b/railties/test/generators/app_generator_test.rb @@ -822,7 +822,7 @@ class AppGeneratorTest < Rails::Generators::TestCase assert_match(/require 'bootsnap\/setup'/, content) end else - assert_file "Gemfile" do |content| + assert_file "Gemfile" do |content| assert_no_match(/bootsnap/, content) end assert_file "config/boot.rb" do |content| |