summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHaelwenn (lanodan) Monnier <contact@hacktivis.me>2020-03-29 22:30:50 +0200
committerHaelwenn (lanodan) Monnier <contact@hacktivis.me>2020-03-31 23:54:20 +0200
commitb30fb1f3bbf8fb8e49cc5276225dc09771c79477 (patch)
tree341f41a4b0d4fee44ddcb93a0403d1c8b413e94e /test
parent2553400a662de7170dd56ee0950a6c1bb1513e45 (diff)
downloadpleroma-b30fb1f3bbf8fb8e49cc5276225dc09771c79477.tar.gz
pleroma-b30fb1f3bbf8fb8e49cc5276225dc09771c79477.zip
User: Fix use of source_data in profile_url/1
Diffstat (limited to 'test')
-rw-r--r--test/web/mastodon_api/views/account_view_test.exs4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/web/mastodon_api/views/account_view_test.exs b/test/web/mastodon_api/views/account_view_test.exs
index 8d00e3c21..ef3f3eff1 100644
--- a/test/web/mastodon_api/views/account_view_test.exs
+++ b/test/web/mastodon_api/views/account_view_test.exs
@@ -178,7 +178,9 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
assert represented = AccountView.render("show.json", %{user: user})
assert represented.acct == "compositions@channels.tests.funkwhale.audio"
- assert represented.url == "https://channels.tests.funkwhale.audio/channels/compositions"
+ # assert represented.url == "https://channels.tests.funkwhale.audio/channels/compositions"
+ assert represented.url ==
+ "https://channels.tests.funkwhale.audio/federation/actors/compositions"
end
test "Represent a deactivated user for an admin" do