diff options
author | lain <lain@soykaf.club> | 2019-10-16 16:16:39 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-10-16 16:16:39 +0200 |
commit | 6e4f52f8a2e510273149acbaf629521d1b4aec2e (patch) | |
tree | 0f6210fe8dfe0b716f2fc9721df0d5a8f807294f /test/tasks | |
parent | e3b4a3e96b2ffbc6d920155cd41687414045d4d6 (diff) | |
download | pleroma-6e4f52f8a2e510273149acbaf629521d1b4aec2e.tar.gz |
Introduce new ingestion pipeline structure, implement internal Likes with it.
Diffstat (limited to 'test/tasks')
-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 b63dcac00..c0a313863 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" => |