Merge branch 'cherry-pick-3ae448b5' into 'maint/1.1'
Backport a test fix to 1.1 See merge request pleroma/pleroma!1671
This commit is contained in:
commit
6c3f5e8ba0
1 changed files with 6 additions and 2 deletions
|
@ -213,7 +213,11 @@ test "all_by_actor_and_id/2" do
|
|||
|
||||
assert [] == Activity.all_by_actor_and_id(user, [])
|
||||
|
||||
assert [%Activity{id: ^id2}, %Activity{id: ^id1}] =
|
||||
Activity.all_by_actor_and_id(user.ap_id, [id1, id2])
|
||||
activities =
|
||||
user.ap_id
|
||||
|> Activity.all_by_actor_and_id([id1, id2])
|
||||
|> Enum.sort(&(&1.id < &2.id))
|
||||
|
||||
assert [%Activity{id: ^id1}, %Activity{id: ^id2}] = activities
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue