diff options
author | rinpatch <rinpatch@sdf.org> | 2020-09-01 09:25:32 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-09-01 10:45:42 +0300 |
commit | 126461942b63bbb74900f296ebcee72d2a33f3d2 (patch) | |
tree | dda738dce0a6236e835650abf752d6ec779803ba /test/user_test.exs | |
parent | dc3a418c270e48c6849159097f8bba57d2a2578e (diff) | |
download | pleroma-126461942b63bbb74900f296ebcee72d2a33f3d2.tar.gz pleroma-126461942b63bbb74900f296ebcee72d2a33f3d2.zip |
User table: ensure bio is always a string
Gets rid of '|| ""' in multiple places and fixes #2067
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 3cf248659..50f72549e 100644 --- a/test/user_test.exs +++ b/test/user_test.exs @@ -1466,7 +1466,7 @@ defmodule Pleroma.UserTest do user = User.get_by_id(user.id) assert %User{ - bio: nil, + bio: "", raw_bio: nil, email: nil, name: nil, |