diff options
author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2019-10-21 11:58:22 +0300 |
---|---|---|
committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2019-10-21 11:58:22 +0300 |
commit | 7c7f90bc4f361b8bf4b49790640a4aa490ee619f (patch) | |
tree | c74d52d098f75f93885dafe8911b9580d97657ab /test/user_test.exs | |
parent | a11a7176d59deafa08a865d6e0950b9b9c540f18 (diff) | |
download | pleroma-7c7f90bc4f361b8bf4b49790640a4aa490ee619f.tar.gz pleroma-7c7f90bc4f361b8bf4b49790640a4aa490ee619f.zip |
[#1304] Merged `develop`, handled User.Info.invisible.
Diffstat (limited to 'test/user_test.exs')
-rw-r--r-- | test/user_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/user_test.exs b/test/user_test.exs index c78e1512a..92de31c74 100644 --- a/test/user_test.exs +++ b/test/user_test.exs @@ -1233,7 +1233,7 @@ defmodule Pleroma.UserTest do describe "invisible?/1" do test "returns true for an invisible user" do - user = insert(:user, local: true, info: %{invisible: true}) + user = insert(:user, local: true, invisible: true) assert User.invisible?(user) end |