username is longer

This commit is contained in:
Oleg Podsadny 2013-06-15 23:49:02 +02:00
parent 549b1b7559
commit 57213a8cdd
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ def password():
def user(password):
session = User.query.session
u = User(
username=u'{0}'.format(random_string(7)),
username=u'{0}'.format(random_string()),
email="{0}@example.com".format(random_string(7)),
password=password,
)