diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-01-16 16:26:53 -0200 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-01-17 14:54:06 +0100 |
commit | 8268d68b509cc9da1f6fe14dc61430f781222fd0 (patch) | |
tree | 546ca390b0b77a108a79bdb2f2ff10fa4cac6846 | |
parent | 31ea83eb898786f853bd7ce7075986fa120f949d (diff) | |
download | rails-8268d68b509cc9da1f6fe14dc61430f781222fd0.tar.gz rails-8268d68b509cc9da1f6fe14dc61430f781222fd0.tar.bz2 rails-8268d68b509cc9da1f6fe14dc61430f781222fd0.zip |
mail.create_path returns an array test fixed [#3712 status:resolved]
Signed-off-by: José Valim <jose.valim@gmail.com>
-rw-r--r-- | actionmailer/test/mail_service_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/test/mail_service_test.rb b/actionmailer/test/mail_service_test.rb index cd41739f1a..03bd0c238c 100644 --- a/actionmailer/test/mail_service_test.rb +++ b/actionmailer/test/mail_service_test.rb @@ -1078,7 +1078,7 @@ EOF def test_return_path_with_create mail = TestMailer.create_return_path - assert_equal "another@somewhere.test", mail.return_path + assert_equal ["another@somewhere.test"], mail.return_path end def test_return_path_with_deliver |