diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-12-12 17:30:08 +0300 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-12-14 11:02:32 -0600 |
commit | cebe3c7deff87ba24f43efcf50499c45d3b3e3f9 (patch) | |
tree | 30a66e6e7077496a124848b7dc011155fb0e914e /test/mix | |
parent | f687befb93a9ad2c3dc61f47bdbb717cb1421ad5 (diff) | |
download | pleroma-cebe3c7deff87ba24f43efcf50499c45d3b3e3f9.tar.gz |
Fix for dropping posts/notifs in WS when mix task is executed
- start oban in mix tasks with empty queues, plugins and crontab
- fix for update_users_following_followers_counts
- fix for removed logo.png
- typo in resend confirmation emails mix task docs
- fix for uploads mix task (start Majic.Pool)
- fix for creating user mix task (start :fast_html app)
Diffstat (limited to 'test/mix')
-rw-r--r-- | test/mix/tasks/pleroma/database_test.exs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/mix/tasks/pleroma/database_test.exs b/test/mix/tasks/pleroma/database_test.exs index a4bd41922..cf28576b5 100644 --- a/test/mix/tasks/pleroma/database_test.exs +++ b/test/mix/tasks/pleroma/database_test.exs @@ -87,7 +87,8 @@ defmodule Mix.Tasks.Pleroma.DatabaseTest do assert user.follower_count == 3 - assert :ok == Mix.Tasks.Pleroma.Database.run(["update_users_following_followers_counts"]) + assert {:ok, :ok} == + Mix.Tasks.Pleroma.Database.run(["update_users_following_followers_counts"]) user = User.get_by_id(user.id) |