aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@users.noreply.github.com>2018-01-07 11:03:53 -0500
committerGitHub <noreply@github.com>2018-01-07 11:03:53 -0500
commit3b57bf22739e4954ec2edc86775f4ee77d6226bc (patch)
tree899ef189db78db2fd22ce1f9d45543bd1a95edb2 /railties/test
parentf614c5f10874f467a21c5360e764e6d14ffc9f49 (diff)
parentb821f95403bb3853264dd689de5c974ec00c9c8f (diff)
downloadrails-3b57bf22739e4954ec2edc86775f4ee77d6226bc.tar.gz
rails-3b57bf22739e4954ec2edc86775f4ee77d6226bc.tar.bz2
rails-3b57bf22739e4954ec2edc86775f4ee77d6226bc.zip
Merge pull request #31610 from prathamesh-sonpatki/improve-deprecation-msg-pr-29358
Improve the deprecation message for using subclass of Rails::Application to start the Rails server
Diffstat (limited to 'railties/test')
-rw-r--r--railties/test/application/server_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/application/server_test.rb b/railties/test/application/server_test.rb
index a6093b5733..f3a7e00a4d 100644
--- a/railties/test/application/server_test.rb
+++ b/railties/test/application/server_test.rb
@@ -29,7 +29,7 @@ module ApplicationTests
server.app
log = File.read(Rails.application.config.paths["log"].first)
- assert_match(/DEPRECATION WARNING: Use `Rails::Application` subclass to start the server is deprecated/, log)
+ assert_match(/DEPRECATION WARNING: Using `Rails::Application` subclass to start the server is deprecated/, log)
end
test "restart rails server with custom pid file path" do