tests: don't manually encode utf8 in formdef name (#36515)

This commit is contained in:
Frédéric Péters 2019-11-16 15:37:40 +01:00
parent 762560fcaf
commit 191f01bd7e
1 changed files with 1 additions and 1 deletions

View File

@ -2106,7 +2106,7 @@ def ics_data(local_user):
FormDef.wipe()
formdef = FormDef()
formdef.url_name = 'test'
formdef.name = 'test\xc3\xa9'
formdef.name = 'testé'
formdef.workflow_roles = {'_receiver': role.id}
formdef.fields = [
fields.StringField(id='0', label='foobar', varname='foobar'),