diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-10-18 15:42:53 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-18 15:42:53 +0900 |
commit | 6e1d8b8eb23f9d45775266f2b03579e992258f57 (patch) | |
tree | fbf31367224a400f7cd7270a85beb6653d90ad03 /railties/test | |
parent | b1867c480dd5476948ff0492ea2f91e2c2fcb04b (diff) | |
parent | 3695bbaf5fe200875717c12f6f94a28121382494 (diff) | |
download | rails-6e1d8b8eb23f9d45775266f2b03579e992258f57.tar.gz rails-6e1d8b8eb23f9d45775266f2b03579e992258f57.tar.bz2 rails-6e1d8b8eb23f9d45775266f2b03579e992258f57.zip |
Merge pull request #30911 from y-yagi/remove_unnecessary_allow_failure_true
Remove unnecessary `allow_failure: true` option
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 e74100ec93..bf89098645 100644 --- a/railties/test/application/rake_test.rb +++ b/railties/test/application/rake_test.rb @@ -166,7 +166,7 @@ module ApplicationTests end RUBY - output = rails("routes", "-g", "show", allow_failure: true) + output = rails("routes", "-g", "show") assert_equal <<-MESSAGE.strip_heredoc, output Prefix Verb URI Pattern Controller#Action cart GET /cart(.:format) cart#show |