- assert_equal "deleted", note_author(users(:deleted_user))
- assert_equal "<a href=\"/user/test2\">test2</a>", note_author(users(:public_user))
- assert_equal "<a href=\"http://test.host/user/test2\">test2</a>", note_author(users(:public_user), :only_path => false)
+ assert_equal "deleted", note_author(deleted_user)
+ assert_equal "<a href=\"/user/#{ERB::Util.u(user.display_name)}\">#{user.display_name}</a>", note_author(user)
+ assert_equal "<a href=\"http://test.host/user/#{ERB::Util.u(user.display_name)}\">#{user.display_name}</a>", note_author(user, :only_path => false)