diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/web/mastodon_api/account_view_test.exs | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/test/web/mastodon_api/account_view_test.exs b/test/web/mastodon_api/account_view_test.exs index 5393732eb..e1e07fbcd 100644 --- a/test/web/mastodon_api/account_view_test.exs +++ b/test/web/mastodon_api/account_view_test.exs @@ -53,7 +53,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do        source: %{          note: "",          privacy: "public", -        sensitive: "false" +        sensitive: false        }      } @@ -90,7 +90,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do        source: %{          note: "",          privacy: "public", -        sensitive: "false" +        sensitive: false        }      } @@ -123,8 +123,10 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do        followed_by: false,        blocking: true,        muting: false, +      muting_notifications: false,        requested: false, -      domain_blocking: false +      domain_blocking: false, +      showing_reblogs: false      }      assert expected == AccountView.render("relationship.json", %{user: user, target: other_user}) | 
