diff options
| author | rinpatch <rinpatch@sdf.org> | 2020-06-17 10:34:23 +0000 |
|---|---|---|
| committer | rinpatch <rinpatch@sdf.org> | 2020-06-17 10:34:23 +0000 |
| commit | 4ec2fb967e0eb0559e39a6d698107f6af4d7a891 (patch) | |
| tree | 6e6d3db526b16681c24e148c19c40073d21b7b4c /test/web/mastodon_api/views | |
| parent | bb68f9d27c81759132dc791c9fabdb54fbb5341d (diff) | |
| parent | e1b07402ab077899dd5b9c0023fbe1c48af259e9 (diff) | |
| download | pleroma-4ec2fb967e0eb0559e39a6d698107f6af4d7a891.tar.gz pleroma-4ec2fb967e0eb0559e39a6d698107f6af4d7a891.zip | |
Merge branch 'features/users-raw_bio' into 'develop'
User: Add raw_bio, storing unformatted bio
See merge request pleroma/pleroma!2326
Diffstat (limited to 'test/web/mastodon_api/views')
| -rw-r--r-- | test/web/mastodon_api/views/account_view_test.exs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/web/mastodon_api/views/account_view_test.exs b/test/web/mastodon_api/views/account_view_test.exs index 044f088a4..80b1f734c 100644 --- a/test/web/mastodon_api/views/account_view_test.exs +++ b/test/web/mastodon_api/views/account_view_test.exs @@ -33,7 +33,8 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do bio: "<script src=\"invalid-html\"></script><span>valid html</span>. a<br>b<br/>c<br >d<br />f '&<>\"", inserted_at: ~N[2017-08-15 15:47:06.597036], - emoji: %{"karjalanpiirakka" => "/file.png"} + emoji: %{"karjalanpiirakka" => "/file.png"}, + raw_bio: "valid html. a\nb\nc\nd\nf '&<>\"" }) expected = %{ |
