diff options
author | feld <feld@feld.me> | 2024-08-12 19:53:32 +0000 |
---|---|---|
committer | feld <feld@feld.me> | 2024-08-12 19:53:32 +0000 |
commit | aa4f5428d34c6d917d6efab96cfb3f2913d9e53a (patch) | |
tree | b4c26900a53eb2a076d2568122bc9190c0290707 /test | |
parent | d3fbbfb39a11e22659172c710ab8897c13990b03 (diff) | |
parent | b76dfd8146116320cbbc00d39f29c7232f5dcfab (diff) | |
download | pleroma-aa4f5428d34c6d917d6efab96cfb3f2913d9e53a.tar.gz pleroma-aa4f5428d34c6d917d6efab96cfb3f2913d9e53a.zip |
Merge branch 'identity-proofs' into 'develop'
Remove stub for /api/v1/accounts/:id/identity_proofs (deprecated by Mastodon 3.5.0)
See merge request pleroma/pleroma!4215
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"]) |