diff options
author | Sadposter <hannah+pleroma@coffee-and-dreams.uk> | 2019-07-23 15:38:19 +0100 |
---|---|---|
committer | Sadposter <hannah+pleroma@coffee-and-dreams.uk> | 2019-07-23 15:38:19 +0100 |
commit | 299c0e965b4b0d917a9daf696dd39ee546b33185 (patch) | |
tree | d33ceb65f0d31ad088ab0f5145706e2ad959d94d | |
parent | 7026018c8c604ce9e077b13e14c35bd8d7052e2c (diff) | |
download | pleroma-299c0e965b4b0d917a9daf696dd39ee546b33185.tar.gz |
actually reblog on the reblog test
-rw-r--r-- | test/web/mastodon_api/mastodon_api_controller_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/mastodon_api/mastodon_api_controller_test.exs b/test/web/mastodon_api/mastodon_api_controller_test.exs index 28d3f4117..bd756c467 100644 --- a/test/web/mastodon_api/mastodon_api_controller_test.exs +++ b/test/web/mastodon_api/mastodon_api_controller_test.exs @@ -3860,7 +3860,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do test "does not fail on an unauthententicated request", %{conn: conn, activity: activity} do other_user = insert(:user) - {:ok, _, _} = CommonAPI.favorite(activity.id, other_user) + {:ok, _, _} = CommonAPI.repeat(activity.id, other_user) response = conn |