summaryrefslogtreecommitdiff
path: root/test/web/twitter_api/twitter_api_test.exs
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-04-15 11:50:36 +0300
committerrinpatch <rinpatch@sdf.org>2019-04-15 11:50:36 +0300
commit5d73dca064df5349d2170d56da6727a52d0d44a8 (patch)
treef139077534bf5d6981a9fbecd5a5955f64d853bf /test/web/twitter_api/twitter_api_test.exs
parent8c6d5a6b4ddb6c2fc9fea9cf009a99c72260ddee (diff)
downloadpleroma-5d73dca064df5349d2170d56da6727a52d0d44a8.tar.gz
pleroma-5d73dca064df5349d2170d56da6727a52d0d44a8.zip
Remove inReplyToStatusId
Diffstat (limited to 'test/web/twitter_api/twitter_api_test.exs')
-rw-r--r--test/web/twitter_api/twitter_api_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/twitter_api/twitter_api_test.exs b/test/web/twitter_api/twitter_api_test.exs
index 6d43bd13a..8781061d4 100644
--- a/test/web/twitter_api/twitter_api_test.exs
+++ b/test/web/twitter_api/twitter_api_test.exs
@@ -105,7 +105,7 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPITest do
get_in(activity.data, ["object", "context"])
assert get_in(reply.data, ["object", "inReplyTo"]) == get_in(activity.data, ["object", "id"])
- assert get_in(reply.data, ["object", "inReplyToStatusId"]) == activity.id
+ assert Activity.get_in_reply_to_activity(reply).id == activity.id
end
test "Follow another user using user_id" do