diff options
author | Xavier Noria <fxn@hashref.com> | 2019-03-08 21:57:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-08 21:57:24 +0100 |
commit | 5ee564345199b91c3d078a6899affa00f9645795 (patch) | |
tree | a7e806544567225d56021896f6d350ae0d806a3e /railties | |
parent | ceeef26fd43ab6daff19042db73abd49d9ed5d61 (diff) | |
parent | b2b29b06fa769640cd261774693d847c6a56bdee (diff) | |
download | rails-5ee564345199b91c3d078a6899affa00f9645795.tar.gz rails-5ee564345199b91c3d078a6899affa00f9645795.tar.bz2 rails-5ee564345199b91c3d078a6899affa00f9645795.zip |
Merge pull request #35539 from sharang-d/replant-text-changes
Minor text changes to the db:seed:replant tests
Diffstat (limited to 'railties')
-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" |