diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2016-03-05 10:37:30 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2016-03-05 10:37:30 +0900 |
commit | 48acc9aefc7d63d138a2cbc00f17386ff1a0e1ef (patch) | |
tree | 85a1b5150507f61b47c74d0684f2174da1ead91c /railties/test | |
parent | 54286878c637e976223e06c4c78877d00112add1 (diff) | |
download | rails-48acc9aefc7d63d138a2cbc00f17386ff1a0e1ef.tar.gz rails-48acc9aefc7d63d138a2cbc00f17386ff1a0e1ef.tar.bz2 rails-48acc9aefc7d63d138a2cbc00f17386ff1a0e1ef.zip |
Fix indentation [ci skip]
Follow up to #24050.
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/application/rake_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/application/rake_test.rb b/railties/test/application/rake_test.rb index 8e6628cff5..1a786a3fd3 100644 --- a/railties/test/application/rake_test.rb +++ b/railties/test/application/rake_test.rb @@ -24,7 +24,7 @@ module ApplicationTests assert $task_loaded end - test "task is protected when previous migration was production" do + test "task is protected when previous migration was production" do Dir.chdir(app_path) do output = `bin/rails generate model product name:string; env RAILS_ENV=production bin/rails db:create db:migrate; |