From aef3f4ea5520598ebca06e399652870f86b2295f Mon Sep 17 00:00:00 2001 From: thedarkone Date: Fri, 20 Feb 2009 18:14:18 +0100 Subject: [PATCH] Fix a failing mailer test. --- 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 0934d35..1e04531 100644 --- a/actionmailer/test/mail_service_test.rb +++ b/actionmailer/test/mail_service_test.rb @@ -975,7 +975,7 @@ end class InheritableTemplateRootTest < Test::Unit::TestCase def test_attr - expected = ("#{File.dirname(__FILE__)}/fixtures/path.with.dots").sub(/\.\//, '') + expected = "#{File.dirname(__FILE__)}/fixtures/path.with.dots" assert_equal expected, FunkyPathMailer.template_root.to_s sub = Class.new(FunkyPathMailer) -- 1.6.0.1