diff options
author | Sharang Dashputre <sharang.d@gmail.com> | 2019-03-09 02:12:28 +0530 |
---|---|---|
committer | Sharang Dashputre <sharang.d@gmail.com> | 2019-03-09 02:17:59 +0530 |
commit | b2b29b06fa769640cd261774693d847c6a56bdee (patch) | |
tree | a7e806544567225d56021896f6d350ae0d806a3e /railties/test/application | |
parent | ceeef26fd43ab6daff19042db73abd49d9ed5d61 (diff) | |
download | rails-b2b29b06fa769640cd261774693d847c6a56bdee.tar.gz rails-b2b29b06fa769640cd261774693d847c6a56bdee.tar.bz2 rails-b2b29b06fa769640cd261774693d847c6a56bdee.zip |
Minor text changes to the db:seed:replant tests
Diffstat (limited to 'railties/test/application')
-rw-r--r-- | railties/test/application/rake/dbs_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/application/rake/dbs_test.rb b/railties/test/application/rake/dbs_test.rb index 07d57dea8a..4f689bcb78 100644 --- a/railties/test/application/rake/dbs_test.rb +++ b/railties/test/application/rake/dbs_test.rb @@ -131,7 +131,7 @@ module ApplicationTests end end - test "db:truncate_all truncates all not internal tables" do + test "db:truncate_all truncates all non-internal tables" do Dir.chdir(app_path) do rails "generate", "model", "book", "title:string" rails "db:migrate" @@ -433,7 +433,7 @@ module ApplicationTests assert_equal "test", test_environment.call end - test "db:seed:replant truncates all not internal tables and loads the seeds" do + test "db:seed:replant truncates all non-internal tables and loads the seeds" do Dir.chdir(app_path) do rails "generate", "model", "book", "title:string" rails "db:migrate" |