diff options
author | Maxim Filippov <colixer@gmail.com> | 2018-12-25 03:38:02 +0300 |
---|---|---|
committer | Maxim Filippov <colixer@gmail.com> | 2018-12-25 03:38:02 +0300 |
commit | aeb89bece60846d8311afd69d0ccfd1df80cbe65 (patch) | |
tree | cbecdaee259ca2eb3a20d365b5e82cb87db5d1e1 | |
parent | f75f707f6cf07c66a23ddbbe80a9b782a1ecb6f8 (diff) | |
download | pleroma-aeb89bece60846d8311afd69d0ccfd1df80cbe65.tar.gz |
Remove unused test
-rw-r--r-- | test/web/mastodon_api/mastodon_api_controller_test.exs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/test/web/mastodon_api/mastodon_api_controller_test.exs b/test/web/mastodon_api/mastodon_api_controller_test.exs index 23f63372c..00cf52d69 100644 --- a/test/web/mastodon_api/mastodon_api_controller_test.exs +++ b/test/web/mastodon_api/mastodon_api_controller_test.exs @@ -308,25 +308,6 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do assert Repo.get(Activity, activity.id) == activity end - - # test "404 when making an attempt to get it" do - # activity = insert(:note_activity) - # author = User.get_by_ap_id(activity.data["actor"]) - - # conn = - # conn - # |> assign(:user, author) - # |> delete("/api/v1/statuses/#{activity.id}") - - # assert %{} = json_response(conn, 200) - - # conn = - # build_conn() - # |> assign(:user, author) - # |> get("/api/v1/statuses/#{activity.id}") - - # assert %{} = json_response(conn, 200) - # end end describe "filters" do |