From 68c30f4e25f78fba687fb6d393c3d3af9994b3a9 Mon Sep 17 00:00:00 2001 From: Santiago Pastorino Date: Sat, 16 Jan 2010 16:26:53 -0200 Subject: [PATCH] mail.create_path returns an array test fixed --- 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 cd41739..03bd0c2 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 -- 1.6.5