diff options
author | marcin mikołajczak <git@mkljczk.pl> | 2022-01-18 18:02:01 +0100 |
---|---|---|
committer | marcin mikołajczak <git@mkljczk.pl> | 2022-01-18 18:18:38 +0100 |
commit | 397f67fef8658000be26fd3b9bd86f5968fcaf52 (patch) | |
tree | 4e1db1caa5e57c92325ec8c7bc4d655ff7e3063d /test | |
parent | b108b0565076d677a90ff38ec8926e1f3153b7f6 (diff) | |
download | pleroma-397f67fef8658000be26fd3b9bd86f5968fcaf52.tar.gz pleroma-397f67fef8658000be26fd3b9bd86f5968fcaf52.zip |
Format code, expose instance configuration related to birth dates
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
Diffstat (limited to 'test')
-rw-r--r-- | test/pleroma/web/mastodon_api/views/account_view_test.exs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/pleroma/web/mastodon_api/views/account_view_test.exs b/test/pleroma/web/mastodon_api/views/account_view_test.exs index c23ffb966..da8761355 100644 --- a/test/pleroma/web/mastodon_api/views/account_view_test.exs +++ b/test/pleroma/web/mastodon_api/views/account_view_test.exs @@ -79,6 +79,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do ap_id: user.ap_id, also_known_as: ["https://shitposter.zone/users/shp"], background_image: "https://example.com/images/asuka_hospital.png", + birth_date: nil, favicon: nil, is_confirmed: true, tags: [], @@ -181,6 +182,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do ap_id: user.ap_id, also_known_as: [], background_image: nil, + birth_date: nil, favicon: nil, is_confirmed: true, tags: [], |