diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-10-18 14:39:28 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-18 14:39:28 +0900 |
commit | b1867c480dd5476948ff0492ea2f91e2c2fcb04b (patch) | |
tree | ba5fa35c4f38f95aab5b6e1bfbe48026b95cb4db | |
parent | 3be123ba26cad461a80d7d680819e71c1388a241 (diff) | |
parent | 116e2c67f5ca4518f2db80b761cc3d5f4993b12a (diff) | |
download | rails-b1867c480dd5476948ff0492ea2f91e2c2fcb04b.tar.gz rails-b1867c480dd5476948ff0492ea2f91e2c2fcb04b.tar.bz2 rails-b1867c480dd5476948ff0492ea2f91e2c2fcb04b.zip |
Merge pull request #30910 from y-yagi/fix_typo_in_allow_failure_argument
Fix typo in `allow_failure` argument [ci skip]
-rw-r--r-- | railties/test/isolation/abstract_unit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/isolation/abstract_unit.rb b/railties/test/isolation/abstract_unit.rb index b7f214cb73..29daaacdb2 100644 --- a/railties/test/isolation/abstract_unit.rb +++ b/railties/test/isolation/abstract_unit.rb @@ -235,7 +235,7 @@ module TestHelpers # Invoke a bin/rails command inside the app # - # allow_failures:: true to return normally if the command exits with + # allow_failure:: true to return normally if the command exits with # a non-zero status. By default, this method will raise. # stderr:: true to pass STDERR output straight to the "real" STDERR. # By default, the STDERR and STDOUT of the process will be |