summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-03-15 06:55:56 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-03-15 06:55:56 +0000
commit4dfe6190fa67ea11dd262cbd51415a4ebd4f45b2 (patch)
tree7d2d3476b2132642683e9e557c3aa47d0fbb5739
parentc10b227b6961dc4420d991fd4d90276499000e5c (diff)
Fixed #13108 -- Corrected an ambiguity in test data with the potential to cause test failures out of the box. Thanks to benreynwar for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12778 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/contrib/auth/tests/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/auth/tests/forms.py b/django/contrib/auth/tests/forms.py
index 05a8a3f094..b691c560be 100644
--- a/django/contrib/auth/tests/forms.py
+++ b/django/contrib/auth/tests/forms.py
@@ -221,10 +221,10 @@ u'jsmith3@example.com'
# bug #5605, preserve the case of the user name (before the @ in the email address)
# when creating a user.
->>> user = User.objects.create_user('test2', 'tesT@EXAMple.com', 'test')
+>>> user = User.objects.create_user('forms_test2', 'tesT@EXAMple.com', 'test')
>>> user.email
'tesT@example.com'
->>> user = User.objects.create_user('test3', 'tesT', 'test')
+>>> user = User.objects.create_user('forms_test3', 'tesT', 'test')
>>> user.email
'tesT'