diff options
author | Maksim Pechnikov <parallel588@gmail.com> | 2020-04-10 07:09:28 +0300 |
---|---|---|
committer | Maksim Pechnikov <parallel588@gmail.com> | 2020-04-10 07:09:28 +0300 |
commit | 648cc699e551324a067cd1b906df5f497ade5861 (patch) | |
tree | 3ddcee32eb0b61770709422aaa266167a8254e28 /test/tasks/database_test.exs | |
parent | 591f7015d91b383dae1ee29576d13c0fad65cad6 (diff) | |
parent | c433ed9dbb1db9777f235527e06c9c8bec3b1436 (diff) | |
download | pleroma-648cc699e551324a067cd1b906df5f497ade5861.tar.gz |
Merge branch 'develop' into support/update_oban
Diffstat (limited to 'test/tasks/database_test.exs')
-rw-r--r-- | test/tasks/database_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tasks/database_test.exs b/test/tasks/database_test.exs index ed1c31d9c..7b05993d3 100644 --- a/test/tasks/database_test.exs +++ b/test/tasks/database_test.exs @@ -102,7 +102,7 @@ defmodule Mix.Tasks.Pleroma.DatabaseTest do {:ok, %{id: id, object: object}} = CommonAPI.post(user, %{"status" => "test"}) {:ok, %{object: object2}} = CommonAPI.post(user, %{"status" => "test test"}) - CommonAPI.favorite(id, user2) + CommonAPI.favorite(user2, id) likes = %{ "first" => |