Fix user count assertion in UI tests

This commit is contained in:
rubenwardy 2021-11-25 10:56:45 +00:00
parent 95c0fb8a70
commit 443dd9f18f
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ def client():
app.config['WTF_CSRF_ENABLED'] = False
recreate_db()
assert User.query.count() == 1
assert User.query.count() == 2
with app.test_client() as client:
yield client