diff options
| author | kaniini <nenolod@gmail.com> | 2019-02-01 17:05:29 +0000 |
|---|---|---|
| committer | kaniini <nenolod@gmail.com> | 2019-02-01 17:05:29 +0000 |
| commit | 0a82a7e6d6f92bf3ca83cf039a445f7c8ce23336 (patch) | |
| tree | 119d8103065971b10b915056d59d30c584ef00d9 /test/web/twitter_api/views | |
| parent | fc7644798d72a6b8c99fb05196ec9143d00e9ef4 (diff) | |
| parent | 3e968f9ef22f48819f5f08a493ccf13d6b52cca8 (diff) | |
| download | pleroma-0a82a7e6d6f92bf3ca83cf039a445f7c8ce23336.tar.gz pleroma-0a82a7e6d6f92bf3ca83cf039a445f7c8ce23336.zip | |
Merge branch 'feature/split-hide-network' into 'develop'
Split hide_network into hide_followers & hide_followings
See merge request pleroma/pleroma!733
Diffstat (limited to 'test/web/twitter_api/views')
| -rw-r--r-- | test/web/twitter_api/views/user_view_test.exs | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/test/web/twitter_api/views/user_view_test.exs b/test/web/twitter_api/views/user_view_test.exs index daf18c1c5..0885afaec 100644 --- a/test/web/twitter_api/views/user_view_test.exs +++ b/test/web/twitter_api/views/user_view_test.exs @@ -100,7 +100,8 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do "locked" => false, "default_scope" => "public", "no_rich_text" => false, - "hide_network" => false, + "hide_followings" => false, + "hide_followers" => false, "fields" => [], "pleroma" => %{ "confirmation_pending" => false, @@ -147,7 +148,8 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do "locked" => false, "default_scope" => "public", "no_rich_text" => false, - "hide_network" => false, + "hide_followings" => false, + "hide_followers" => false, "fields" => [], "pleroma" => %{ "confirmation_pending" => false, @@ -195,7 +197,8 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do "locked" => false, "default_scope" => "public", "no_rich_text" => false, - "hide_network" => false, + "hide_followings" => false, + "hide_followers" => false, "fields" => [], "pleroma" => %{ "confirmation_pending" => false, @@ -257,7 +260,8 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do "locked" => false, "default_scope" => "public", "no_rich_text" => false, - "hide_network" => false, + "hide_followings" => false, + "hide_followers" => false, "fields" => [], "pleroma" => %{ "confirmation_pending" => false, |
