diff options
author | Steve Klabnik <steve@steveklabnik.com> | 2013-03-18 22:34:02 -0700 |
---|---|---|
committer | Steve Klabnik <steve@steveklabnik.com> | 2013-03-18 22:34:02 -0700 |
commit | 66ac0c567dfcc6a31568d270dba335eb1971abc3 (patch) | |
tree | 724d4a76de0c027de49458c69394bda8ce6d2f2c /actionmailer/test | |
parent | f0d5e32f891dcfd49fb757cc8f3a0f221e3c06a8 (diff) | |
parent | 6893c23f48d2707714240a1ae2a410a0661aa3a5 (diff) | |
download | rails-66ac0c567dfcc6a31568d270dba335eb1971abc3.tar.gz rails-66ac0c567dfcc6a31568d270dba335eb1971abc3.tar.bz2 rails-66ac0c567dfcc6a31568d270dba335eb1971abc3.zip |
Merge pull request #9792 from vipulnsward/drop_unused_hash
drop an unused hash; change slang to SPECIAL
Diffstat (limited to 'actionmailer/test')
-rw-r--r-- | actionmailer/test/mailers/base_mailer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/test/mailers/base_mailer.rb b/actionmailer/test/mailers/base_mailer.rb index 504ca36483..20b6671283 100644 --- a/actionmailer/test/mailers/base_mailer.rb +++ b/actionmailer/test/mailers/base_mailer.rb @@ -119,7 +119,7 @@ class BaseMailer < ActionMailer::Base def without_mail_call end - def with_nil_as_return_value(hash = {}) + def with_nil_as_return_value mail(:template_name => "welcome") nil end |