diff options
author | marcin mikołajczak <git@mkljczk.pl> | 2024-08-12 12:23:38 +0200 |
---|---|---|
committer | marcin mikołajczak <git@mkljczk.pl> | 2024-08-12 12:23:38 +0200 |
commit | 6e53e94bdab91044ffa24e9d6585fdde1727b0f5 (patch) | |
tree | c8b43521cd36f90c896502c8ab69180ccfc82a54 /test | |
parent | 540e62c5fcab3887d7ca488cb3f464f000f69523 (diff) | |
download | pleroma-6e53e94bdab91044ffa24e9d6585fdde1727b0f5.tar.gz pleroma-6e53e94bdab91044ffa24e9d6585fdde1727b0f5.zip |
Remove stub for /api/v1/accounts/:id/identity_proofs (deprecated by Mastodon 3.5.0)
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
Diffstat (limited to 'test')
-rw-r--r-- | test/pleroma/web/mastodon_api/mastodon_api_controller_test.exs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/pleroma/web/mastodon_api/mastodon_api_controller_test.exs b/test/pleroma/web/mastodon_api/mastodon_api_controller_test.exs index 622c5e3d5..8e7fe4013 100644 --- a/test/pleroma/web/mastodon_api/mastodon_api_controller_test.exs +++ b/test/pleroma/web/mastodon_api/mastodon_api_controller_test.exs @@ -6,15 +6,6 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do use Pleroma.Web.ConnCase, async: true describe "empty_array/2 (stubs)" do - test "GET /api/v1/accounts/:id/identity_proofs" do - %{user: user, conn: conn} = oauth_access(["read:accounts"]) - - assert [] == - conn - |> get("/api/v1/accounts/#{user.id}/identity_proofs") - |> json_response(200) - end - test "GET /api/v1/endorsements" do %{conn: conn} = oauth_access(["read:accounts"]) |