diff options
author | Alex Gleason <alex@alexgleason.me> | 2021-12-21 11:35:04 -0600 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2021-12-21 11:35:04 -0600 |
commit | 820904d4192e27ab382884c6422160a377f3ad68 (patch) | |
tree | 104895114e2d23da863729b919bc468dabe909aa | |
parent | 40f14b9daa26b8e41b436e123191e80f5e73f850 (diff) | |
download | pleroma-820904d4192e27ab382884c6422160a377f3ad68.tar.gz |
Change timeline visibility test
-rw-r--r-- | test/pleroma/web/activity_pub/activity_pub_test.exs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/pleroma/web/activity_pub/activity_pub_test.exs b/test/pleroma/web/activity_pub/activity_pub_test.exs index c7934f496..7313ed42e 100644 --- a/test/pleroma/web/activity_pub/activity_pub_test.exs +++ b/test/pleroma/web/activity_pub/activity_pub_test.exs @@ -1394,8 +1394,8 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do ActivityPub.fetch_activities([user1.ap_id | User.following(user1)], %{user: user1}) |> Enum.map(fn a -> a.id end) - assert [public_activity.id, private_activity_1.id] == activities - assert length(activities) == 2 + assert [public_activity.id, private_activity_1.id, private_activity_3.id] == activities + assert length(activities) == 3 end end |