diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-03-15 06:57:07 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-03-15 06:57:07 +0000 |
| commit | d3ee5566b4804f40e4cf5e86e4bdb5b2c629b8a2 (patch) | |
| tree | c7c178a98407d70faa15f64946927342dea271e8 /django | |
| parent | ef92f4fdd91ec980618b35f907178655b5182ae3 (diff) | |
[1.1.X] 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.
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
Diffstat (limited to 'django')
| -rw-r--r-- | django/contrib/auth/tests/forms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/auth/tests/forms.py b/django/contrib/auth/tests/forms.py index c3cc7641a9..ee1abe5023 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' |
