diff options
author | Mark Felder <feld@FreeBSD.org> | 2019-02-06 22:34:44 +0000 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2019-02-06 22:34:44 +0000 |
commit | 74518d0b607695a80e25f17de8369f47c7652b17 (patch) | |
tree | 9d8f8fd5b1d64b42bda21e8c7c3786a48410c179 /test/web/twitter_api/views | |
parent | 1220a171466ff613978c39eb977902ee9492b187 (diff) | |
download | pleroma-74518d0b607695a80e25f17de8369f47c7652b17.tar.gz pleroma-74518d0b607695a80e25f17de8369f47c7652b17.zip |
hide_followings was renamed to hide_followers in the FE, but never synced up in the BE
This was a dirty regex replace which worked on my server
Diffstat (limited to 'test/web/twitter_api/views')
-rw-r--r-- | test/web/twitter_api/views/user_view_test.exs | 8 |
1 files changed, 4 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 b89da50a4..95e52ca46 100644 --- a/test/web/twitter_api/views/user_view_test.exs +++ b/test/web/twitter_api/views/user_view_test.exs @@ -100,7 +100,7 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do "locked" => false, "default_scope" => "public", "no_rich_text" => false, - "hide_followings" => false, + "hide_follows" => false, "hide_followers" => false, "fields" => [], "pleroma" => %{ @@ -148,7 +148,7 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do "locked" => false, "default_scope" => "public", "no_rich_text" => false, - "hide_followings" => false, + "hide_follows" => false, "hide_followers" => false, "fields" => [], "pleroma" => %{ @@ -197,7 +197,7 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do "locked" => false, "default_scope" => "public", "no_rich_text" => false, - "hide_followings" => false, + "hide_follows" => false, "hide_followers" => false, "fields" => [], "pleroma" => %{ @@ -276,7 +276,7 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do "locked" => false, "default_scope" => "public", "no_rich_text" => false, - "hide_followings" => false, + "hide_follows" => false, "hide_followers" => false, "fields" => [], "pleroma" => %{ |