diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-09-13 05:55:28 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-09-13 05:55:28 -0700 |
commit | d891c19066bba3a614a27a92d55968174738e755 (patch) | |
tree | 225baa5c17095a8b3815538689ca2d88d2b63c13 /railties/test/application/multiple_applications_test.rb | |
parent | 1eebfc9f66149020efe23a620da110424e5a5c33 (diff) | |
parent | 4a36eb64a5d26f4d95df8037a3ecb198a5c0ef78 (diff) | |
download | rails-d891c19066bba3a614a27a92d55968174738e755.tar.gz rails-d891c19066bba3a614a27a92d55968174738e755.tar.bz2 rails-d891c19066bba3a614a27a92d55968174738e755.zip |
Merge pull request #12216 from suginoy/a-an
Fix typos: the indefinite articles(a -> an).
Diffstat (limited to 'railties/test/application/multiple_applications_test.rb')
-rw-r--r-- | railties/test/application/multiple_applications_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/application/multiple_applications_test.rb b/railties/test/application/multiple_applications_test.rb index 03c343c475..5bfea599e0 100644 --- a/railties/test/application/multiple_applications_test.rb +++ b/railties/test/application/multiple_applications_test.rb @@ -110,7 +110,7 @@ module ApplicationTests assert_equal 0, $run_count, "Without loading the initializers, the count should be 0" - # Set config.eager_load to false so that a eager_load warning doesn't pop up + # Set config.eager_load to false so that an eager_load warning doesn't pop up AppTemplate::Application.new { config.eager_load = false }.initialize! assert_equal 3, $run_count, "There should have been three initializers that incremented the count" |