mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed a bunch of Python 2.3 issues. Two tests still fail, but this fixes the bulk of things.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6183 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
fa5e935af0
commit
ea3e89cb1d
4 changed files with 14 additions and 2 deletions
|
@ -243,7 +243,7 @@ class ClientTest(TestCase):
|
|||
|
||||
# Log in
|
||||
login = self.client.login(username='testclient', password='password')
|
||||
self.assertTrue(login, 'Could not log in')
|
||||
self.failUnless(login, 'Could not log in')
|
||||
|
||||
# Request a page that requires a login
|
||||
response = self.client.get('/test_client/login_protected_view/')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue