diff options
Diffstat (limited to 'test/unit/mailer_test.rb')
-rw-r--r-- | test/unit/mailer_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/mailer_test.rb b/test/unit/mailer_test.rb index 3e214b47d..b82d570bc 100644 --- a/test/unit/mailer_test.rb +++ b/test/unit/mailer_test.rb @@ -195,7 +195,7 @@ class MailerTest < ActiveSupport::TestCase issue = Issue.generate!(:description => '@jsmith') assert Mailer.deliver_issue_add(issue) assert_select_email do - assert_select "a[href=?]", "http://localhost:3000/users/2", :text => 'John Smith' + assert_select "a[href=?]", "http://localhost:3000/users/2", :text => '@John Smith' end end |