projects
/
akkoma
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e71d662
)
Merge branch 'fix-tests' into 'develop'
author
rinpatch
<rinpatch@sdf.org>
Sat, 14 Sep 2019 12:36:08 +0000
(12:36 +0000)
committer
rinpatch
<rinpatch@sdf.org>
Sat, 14 Sep 2019 18:14:39 +0000
(18:14 +0000)
Fix `Activity.all_by_actor_and_id/2` test
See merge request pleroma/pleroma!1668
(cherry picked from commit
3ae448b592214b43af1d079c997c6f6b91d31aeb
)
b870ae08
Fix `Activity.all_by_actor_and_id/2` test
test/activity_test.exs
patch
|
blob
|
history
diff --git
a/test/activity_test.exs
b/test/activity_test.exs
index f9f789a7680da7aa0921fdbc6430054465c734d1..275cab81e6123a839ed044e5a5cc2642f2360040 100644
(file)
--- a/
test/activity_test.exs
+++ b/
test/activity_test.exs
@@
-213,7
+213,11
@@
defmodule Pleroma.ActivityTest 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