Skip to content

Commit

Permalink
[1.1.X] Fixed #13108 -- Corrected an ambiguity in test data with the …
Browse files Browse the repository at this point in the history
…potential to cause test failures out of the box. Thanks to benreynwar for the report.

Backport of r12778 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12779 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Mar 15, 2010
1 parent ef92f4f commit d3ee556
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django/contrib/auth/tests/forms.py
Expand Up @@ -221,10 +221,10 @@
# 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'
Expand Down

0 comments on commit d3ee556

Please sign in to comment.