Skip to content

Commit 4dfe619

Browse files
committed
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
1 parent c10b227 commit 4dfe619

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

django/contrib/auth/tests/forms.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,10 @@
221221
222222
# bug #5605, preserve the case of the user name (before the @ in the email address)
223223
# when creating a user.
224-
>>> user = User.objects.create_user('test2', '[email protected]', 'test')
224+
>>> user = User.objects.create_user('forms_test2', '[email protected]', 'test')
225225
>>> user.email
226226
227-
>>> user = User.objects.create_user('test3', 'tesT', 'test')
227+
>>> user = User.objects.create_user('forms_test3', 'tesT', 'test')
228228
>>> user.email
229229
'tesT'
230230

0 commit comments

Comments
 (0)