diff options
author | José Valim <jose.valim@plataformatec.com.br> | 2013-05-07 21:32:52 -0700 |
---|---|---|
committer | José Valim <jose.valim@plataformatec.com.br> | 2013-05-07 21:32:52 -0700 |
commit | 8b9f5fc864ce87fa13753ba69dd2543eb8b60999 (patch) | |
tree | b8cddafe4b25a510ef767c9703506b03989da0d2 /railties/test | |
parent | d156b4724f79d51bb924ccb5055f3602bb7fcc65 (diff) | |
parent | b5429eec6084cfe9f1283620391f81e3f6fefda4 (diff) | |
download | rails-8b9f5fc864ce87fa13753ba69dd2543eb8b60999.tar.gz rails-8b9f5fc864ce87fa13753ba69dd2543eb8b60999.tar.bz2 rails-8b9f5fc864ce87fa13753ba69dd2543eb8b60999.zip |
Merge pull request #10511 from prathamesh-sonpatki/existent
Fix Typo existant -> existent [ci skip]
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/generators/shared_generator_tests.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/generators/shared_generator_tests.rb b/railties/test/generators/shared_generator_tests.rb index 2724882a23..369a0ee46c 100644 --- a/railties/test/generators/shared_generator_tests.rb +++ b/railties/test/generators/shared_generator_tests.rb @@ -77,9 +77,9 @@ module SharedGeneratorTests end def test_template_raises_an_error_with_invalid_path - content = capture(:stderr){ run_generator([destination_root, "-m", "non/existant/path"]) } + content = capture(:stderr){ run_generator([destination_root, "-m", "non/existent/path"]) } assert_match(/The template \[.*\] could not be loaded/, content) - assert_match(/non\/existant\/path/, content) + assert_match(/non\/existent\/path/, content) end def test_template_is_executed_when_supplied |