diff options
author | lain <lain@soykaf.club> | 2020-09-01 09:32:01 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-09-01 09:32:01 +0000 |
commit | d48755791ddfea0b30bc5a843dfc4181efd63982 (patch) | |
tree | dda738dce0a6236e835650abf752d6ec779803ba /test/user_test.exs | |
parent | 9d63b2c9db88ffdeb608df427caf2996eb0bb094 (diff) | |
parent | 126461942b63bbb74900f296ebcee72d2a33f3d2 (diff) | |
download | pleroma-d48755791ddfea0b30bc5a843dfc4181efd63982.tar.gz pleroma-d48755791ddfea0b30bc5a843dfc4181efd63982.zip |
Merge branch 'fix/static-fe-nil-bio-crash' into 'develop'
User table: ensure bio is always a string
Closes #2067
See merge request pleroma/pleroma!2938
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, |