diff options
author | Maksim Pechnikov <parallel588@gmail.com> | 2019-06-03 22:51:14 +0300 |
---|---|---|
committer | Maksim Pechnikov <parallel588@gmail.com> | 2019-06-03 22:51:14 +0300 |
commit | 64ada7f960eb45d5e06d431c0c27be1014106ff9 (patch) | |
tree | cc1030fd3546a5d9a7dbc81026cbcf816d8c75bd /test/web/mastodon_api | |
parent | 46c7e16512a4e51e2c062b9985bd04fb76487a28 (diff) | |
download | pleroma-64ada7f960eb45d5e06d431c0c27be1014106ff9.tar.gz pleroma-64ada7f960eb45d5e06d431c0c27be1014106ff9.zip |
fix tests
Diffstat (limited to 'test/web/mastodon_api')
-rw-r--r-- | test/web/mastodon_api/account_view_test.exs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/test/web/mastodon_api/account_view_test.exs b/test/web/mastodon_api/account_view_test.exs index aaf2261bb..66ae8b4bb 100644 --- a/test/web/mastodon_api/account_view_test.exs +++ b/test/web/mastodon_api/account_view_test.exs @@ -67,7 +67,8 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do hide_favorites: true, hide_followers: false, hide_follows: false, - relationship: %{} + relationship: %{}, + skip_thread_containment: false } } @@ -132,7 +133,8 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do hide_favorites: true, hide_followers: false, hide_follows: false, - relationship: %{} + relationship: %{}, + skip_thread_containment: false } } @@ -233,7 +235,8 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do domain_blocking: false, showing_reblogs: true, endorsed: false - } + }, + skip_thread_containment: false } } |