diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2020-03-02 05:38:25 +0100 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2020-07-08 06:28:39 +0200 |
commit | 6a679d80c9030afa8327377928f8ac2fcf1a4a0e (patch) | |
tree | a4f45718dfe570f064966ad3ed8ec603a6d77ff4 /test/web/mastodon_api | |
parent | f6d09fafee83514889bbcf6531e0bc01e33b0b16 (diff) | |
download | pleroma-6a679d80c9030afa8327377928f8ac2fcf1a4a0e.tar.gz pleroma-6a679d80c9030afa8327377928f8ac2fcf1a4a0e.zip |
Move get_favicon to Pleroma.Instances, use /
Diffstat (limited to 'test/web/mastodon_api')
-rw-r--r-- | test/web/mastodon_api/views/account_view_test.exs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/web/mastodon_api/views/account_view_test.exs b/test/web/mastodon_api/views/account_view_test.exs index e01a7c1ee..c4341cb28 100644 --- a/test/web/mastodon_api/views/account_view_test.exs +++ b/test/web/mastodon_api/views/account_view_test.exs @@ -75,7 +75,8 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do pleroma: %{ ap_id: user.ap_id, background_image: "https://example.com/images/asuka_hospital.png", - favicon: nil, + favicon: + "https://shitposter.club/plugins/Qvitter/img/gnusocial-favicons/favicon-16x16.png", confirmation_pending: false, tags: [], is_admin: false, @@ -153,7 +154,8 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do pleroma: %{ ap_id: user.ap_id, background_image: nil, - favicon: nil, + favicon: + "https://shitposter.club/plugins/Qvitter/img/gnusocial-favicons/favicon-16x16.png", confirmation_pending: false, tags: [], is_admin: false, |