diff options
author | rinpatch <rinpatch@sdf.org> | 2020-03-23 19:32:01 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-03-23 19:32:01 +0000 |
commit | fbf02a372254940c16908ef608e67fd28cfa4bf0 (patch) | |
tree | b1273d143cf4cc4a5998fdb424880c1a89d7cb9e /test/web/mastodon_api/controllers/account_controller/update_credentials_test.exs | |
parent | d931a59072de0861e889c6349eacc3d7f1f41fd9 (diff) | |
parent | 15be6ba9c200b2a4ae153d26876be1b5cbb6357e (diff) | |
download | pleroma-fbf02a372254940c16908ef608e67fd28cfa4bf0.tar.gz pleroma-fbf02a372254940c16908ef608e67fd28cfa4bf0.zip |
Merge branch 'bugfix/profile-bio-newline' into 'develop'
AccountView: fix for other forms of <br> in bio
Closes #1643
See merge request pleroma/pleroma!2322
Diffstat (limited to 'test/web/mastodon_api/controllers/account_controller/update_credentials_test.exs')
-rw-r--r-- | test/web/mastodon_api/controllers/account_controller/update_credentials_test.exs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/web/mastodon_api/controllers/account_controller/update_credentials_test.exs b/test/web/mastodon_api/controllers/account_controller/update_credentials_test.exs index 43538cb17..51cebe567 100644 --- a/test/web/mastodon_api/controllers/account_controller/update_credentials_test.exs +++ b/test/web/mastodon_api/controllers/account_controller/update_credentials_test.exs @@ -76,7 +76,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController.UpdateCredentialsTest do conn = patch(conn, "/api/v1/accounts/update_credentials", %{ - "note" => "I drink #cofe with @#{user2.nickname}" + "note" => "I drink #cofe with @#{user2.nickname}\n\nsuya.." }) assert user_data = json_response(conn, 200) @@ -84,7 +84,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController.UpdateCredentialsTest do assert user_data["note"] == ~s(I drink <a class="hashtag" data-tag="cofe" href="http://localhost:4001/tag/cofe">#cofe</a> with <span class="h-card"><a data-user="#{ user2.id - }" class="u-url mention" href="#{user2.ap_id}" rel="ugc">@<span>#{user2.nickname}</span></a></span>) + }" class="u-url mention" href="#{user2.ap_id}" rel="ugc">@<span>#{user2.nickname}</span></a></span><br/><br/>suya..) end test "updates the user's locking status", %{conn: conn} do |