diff options
author | Alex Gleason <alex@alexgleason.me> | 2021-06-30 01:14:34 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2021-06-30 01:32:28 -0500 |
commit | 43800d83f4fc3b251cdd93c28dab2df7297021b3 (patch) | |
tree | c6de61f5ded6a06f5a8446429f1fc24a3d623c1b /test | |
parent | a7929c4d89a07a7f577e7cde5638bde8b1cb586a (diff) | |
download | pleroma-43800d83f4fc3b251cdd93c28dab2df7297021b3.tar.gz |
Deletions: allow deactivated users to be deleted
Diffstat (limited to 'test')
-rw-r--r-- | test/pleroma/user_test.exs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/pleroma/user_test.exs b/test/pleroma/user_test.exs index 60bc58a48..181990e4b 100644 --- a/test/pleroma/user_test.exs +++ b/test/pleroma/user_test.exs @@ -1621,9 +1621,9 @@ defmodule Pleroma.UserTest do follower_count: 9, following_count: 9001, is_locked: true, - is_confirmed: false, + is_confirmed: true, password_reset_pending: true, - is_approved: false, + is_approved: true, registration_reason: "ahhhhh", confirmation_token: "qqqq", domain_blocks: ["lain.com"], @@ -1663,9 +1663,9 @@ defmodule Pleroma.UserTest do follower_count: 0, following_count: 0, is_locked: false, - is_confirmed: false, + is_confirmed: true, password_reset_pending: false, - is_approved: false, + is_approved: true, registration_reason: nil, confirmation_token: nil, domain_blocks: [], |