diff options
| author | Brian Rosner <brosner@gmail.com> | 2008-06-19 16:21:21 +0000 |
|---|---|---|
| committer | Brian Rosner <brosner@gmail.com> | 2008-06-19 16:21:21 +0000 |
| commit | abe84c8648b9d5eb5a77093cf61d7a79c4f1baf4 (patch) | |
| tree | e308e6104973a4d4973af5d93a5c0ca11fd641a9 | |
| parent | d5899f17e920420c183e7379a6405033064ec785 (diff) | |
newforms-admin: Removed a print statement in tests/regressiontests/admin_views/tests.py that snuck by.
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7708 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | tests/regressiontests/admin_views/tests.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/regressiontests/admin_views/tests.py b/tests/regressiontests/admin_views/tests.py index f5f44842b0..788b16294b 100644 --- a/tests/regressiontests/admin_views/tests.py +++ b/tests/regressiontests/admin_views/tests.py @@ -95,7 +95,6 @@ class AdminViewPermissionsTest(TestCase): request = self.client.get('/test_admin/admin/') self.failUnlessEqual(request.status_code, 200) login = self.client.post('/test_admin/admin/', self.super_email_login) - print login self.assertContains(login, "Your e-mail address is not your username") # only correct passwords get a username hint login = self.client.post('/test_admin/admin/', self.super_email_bad_login) |
