diff options
author | Hakaba Hitoyo <hakabahitoyo@yahoo.co.jp> | 2019-09-26 02:57:41 +0000 |
---|---|---|
committer | kaniini <ariadne@dereferenced.org> | 2019-09-26 02:57:41 +0000 |
commit | 5fb72170a72e61f0b8035fba63b7bbdff7acde05 (patch) | |
tree | 21985ed6d20990b264806c04ef95c9e088d7074b /test | |
parent | 3ff57f1fd3f7529f2c657a3940b1727b8a2df527 (diff) | |
download | pleroma-5fb72170a72e61f0b8035fba63b7bbdff7acde05.tar.gz |
Revert "add _discoverable_ keyword into ActivityPub @context"
This reverts commit 3aef4bdf8f37efd1055a84c5fca12ec4559a17f5.
Diffstat (limited to 'test')
-rw-r--r-- | test/web/mastodon_api/views/account_view_test.exs | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/test/web/mastodon_api/views/account_view_test.exs b/test/web/mastodon_api/views/account_view_test.exs index 6206107f7..f2f334992 100644 --- a/test/web/mastodon_api/views/account_view_test.exs +++ b/test/web/mastodon_api/views/account_view_test.exs @@ -67,7 +67,9 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do source: %{ note: "valid html", sensitive: false, - pleroma: %{}, + pleroma: %{ + discoverable: false + }, fields: [] }, pleroma: %{ @@ -137,7 +139,9 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do source: %{ note: user.bio, sensitive: false, - pleroma: %{}, + pleroma: %{ + discoverable: false + }, fields: [] }, pleroma: %{ @@ -310,7 +314,9 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do source: %{ note: user.bio, sensitive: false, - pleroma: %{}, + pleroma: %{ + discoverable: false + }, fields: [] }, pleroma: %{ |