Merge branch 'fix-tests' into 'develop'
authorrinpatch <rinpatch@sdf.org>
Sat, 14 Sep 2019 12:36:08 +0000 (12:36 +0000)
committerrinpatch <rinpatch@sdf.org>
Sat, 14 Sep 2019 12:36:08 +0000 (12:36 +0000)
Fix `Activity.all_by_actor_and_id/2` test

See merge request pleroma/pleroma!1668

test/activity_test.exs

index f9f789a7680da7aa0921fdbc6430054465c734d1..275cab81e6123a839ed044e5a5cc2642f2360040 100644 (file)
@@ -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