aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/test_helper_test.rb
diff options
context:
space:
mode:
authorGannon McGibbon <gannon.mcgibbon@gmail.com>2018-11-30 17:33:35 -0500
committerGannon McGibbon <gannon.mcgibbon@gmail.com>2018-12-04 11:00:34 -0500
commitf5050d998def98563f8fa4b381c09f563681f159 (patch)
tree0d32f8ccaddaf9bf7e1dd061658f58b8877f2f78 /actionmailer/test/test_helper_test.rb
parent609c58bfa6df58b88e3eadebb1f1d49354541d24 (diff)
downloadrails-f5050d998def98563f8fa4b381c09f563681f159.tar.gz
rails-f5050d998def98563f8fa4b381c09f563681f159.tar.bz2
rails-f5050d998def98563f8fa4b381c09f563681f159.zip
Add MailDeliveryJob for unified mail delivery
Add `MailDeliveryJob` for delivering both regular and parameterized mail. Deprecate using `DeliveryJob` and `Parameterized::DeliveryJob`.
Diffstat (limited to 'actionmailer/test/test_helper_test.rb')
-rw-r--r--actionmailer/test/test_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/test/test_helper_test.rb b/actionmailer/test/test_helper_test.rb
index 4e21ab0a69..60e2389aa8 100644
--- a/actionmailer/test/test_helper_test.rb
+++ b/actionmailer/test/test_helper_test.rb
@@ -24,7 +24,7 @@ class TestHelperMailer < ActionMailer::Base
end
end
-class CustomDeliveryJob < ActionMailer::DeliveryJob
+class CustomDeliveryJob < ActionMailer::MailDeliveryJob
end
class CustomDeliveryMailer < TestHelperMailer