From 57213a8cdd00e5d7013faf4bd000a6e2990094ef Mon Sep 17 00:00:00 2001 From: Oleg Podsadny Date: Sat, 15 Jun 2013 23:49:02 +0200 Subject: [PATCH] username is longer --- tests/fixtures/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fixtures/auth.py b/tests/fixtures/auth.py index 3431636..c52ccdb 100644 --- a/tests/fixtures/auth.py +++ b/tests/fixtures/auth.py @@ -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, )