Compare commits

..

3 Commits

Author SHA1 Message Date
Tim Van Baak cda4523b66 Add stopgap pytest.ini 2021-05-31 17:14:37 -07:00
Tim Van Baak 98898b98fc Reduce test output 2021-05-31 17:14:37 -07:00
Tim Van Baak caa2e1e8a4 Add character backend 2021-05-31 17:14:25 -07:00
1 changed files with 2 additions and 2 deletions

View File

@ -69,5 +69,5 @@ def test_character_limits(db: DbContext, lexicon_with_editor):
# Setting the limit to null should allow a third character
lexicon.character_limit = None
db.session.commit()
char2 = charq.create(db, lexicon.id, user.id, 'Test Character 3', signature=None)
assert char2.id, 'Failed to create character 3'
char3 = charq.create(db, lexicon.id, user.id, 'Test Character 3', signature=None)
assert char3.id, 'Failed to create character 3'