diff options
author | rinpatch <rinpatch@sdf.org> | 2019-04-15 11:50:36 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-04-15 11:50:36 +0300 |
commit | 5d73dca064df5349d2170d56da6727a52d0d44a8 (patch) | |
tree | f139077534bf5d6981a9fbecd5a5955f64d853bf /test/web/mastodon_api/mastodon_api_controller_test.exs | |
parent | 8c6d5a6b4ddb6c2fc9fea9cf009a99c72260ddee (diff) | |
download | pleroma-5d73dca064df5349d2170d56da6727a52d0d44a8.tar.gz pleroma-5d73dca064df5349d2170d56da6727a52d0d44a8.zip |
Remove inReplyToStatusId
Diffstat (limited to 'test/web/mastodon_api/mastodon_api_controller_test.exs')
-rw-r--r-- | test/web/mastodon_api/mastodon_api_controller_test.exs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/web/mastodon_api/mastodon_api_controller_test.exs b/test/web/mastodon_api/mastodon_api_controller_test.exs index 292cd46b8..df3315022 100644 --- a/test/web/mastodon_api/mastodon_api_controller_test.exs +++ b/test/web/mastodon_api/mastodon_api_controller_test.exs @@ -342,7 +342,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do activity = Activity.get_by_id(id) assert activity.data["context"] == replied_to.data["context"] - assert activity.data["object"]["inReplyToStatusId"] == replied_to.id + assert Activity.get_in_reply_to_activity(activity).id == replied_to.id end test "posting a status with an invalid in_reply_to_id", %{conn: conn} do @@ -2724,7 +2724,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do activity = Activity.get_by_id(id) assert activity.data["object"]["inReplyTo"] == replied_to.data["object"]["id"] - assert activity.data["object"]["inReplyToStatusId"] == replied_to.id + assert Activity.get_in_reply_to_activity(activity).id == replied_to.id # Reblog from the third user conn2 = |