Fixed broken channel save when description is too long

This commit is contained in:
Agate 2020-04-22 08:05:45 +02:00
commit 677a5dcf62
No known key found for this signature in database
GPG key ID: 6B501DFD73514E14
2 changed files with 0 additions and 5 deletions

View file

@ -184,9 +184,6 @@ def test_channel_serializer_update(factories, mocker):
sorted(channel.artist.tagged_items.values_list("tag__name", flat=True))
== data["tags"]
)
assert channel.actor.summary == common_utils.render_html(
data["description"]["text"], "text/markdown"
)
assert channel.artist.description.text == data["description"]["text"]
assert channel.artist.description.content_type == "text/markdown"
assert channel.actor.name == data["name"]