diff options
author | Maksim Pechnikov <parallel588@gmail.com> | 2020-02-10 20:49:20 +0300 |
---|---|---|
committer | Maksim Pechnikov <parallel588@gmail.com> | 2020-02-10 20:49:20 +0300 |
commit | 6813c0302c2b665d337d5f5831d2df6312b6b277 (patch) | |
tree | 8c9333eeff70c799ecd30e6589f3cbebd8adbf5c /test/web/mastodon_api/controllers/account_controller/update_credentials_test.exs | |
parent | 2c40c8b4a2890e60abe8d67a3c8af4a88d225b60 (diff) | |
parent | 544bdbfb90d764a5aba8ed07c13b842838d76d73 (diff) | |
download | pleroma-6813c0302c2b665d337d5f5831d2df6312b6b277.tar.gz pleroma-6813c0302c2b665d337d5f5831d2df6312b6b277.zip |
Merge branch 'develop' into issue/1383
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 09bdc46e0..82d9e7d2f 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 @@ -269,7 +269,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController.UpdateCredentialsTest do |> json_response(200) assert account_data["fields"] == [ - %{"name" => "foo", "value" => "bar"}, + %{"name" => "<a href=\"http://google.com\">foo</a>", "value" => "bar"}, %{"name" => "link", "value" => ~S(<a href="http://cofe.io" rel="ugc">cofe.io</a>)} ] @@ -297,7 +297,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController.UpdateCredentialsTest do |> json_response(200) assert account["fields"] == [ - %{"name" => "foo", "value" => "bar"}, + %{"name" => "<a href=\"http://google.com\">foo</a>", "value" => "bar"}, %{"name" => "link", "value" => ~S(<a href="http://cofe.io" rel="ugc">cofe.io</a>)} ] |