mirror of
https://github.com/django/django.git
synced 2024-11-29 22:56:46 +01:00
Python 2.3 fix: assertTrue *still* doesn't exist in Python 2.3
The tests and testing framework should use failUnless() instead. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10100 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
255cb391d1
commit
420a35b9b7
@ -278,7 +278,7 @@ class TransactionTestCase(unittest.TestCase):
|
||||
"""
|
||||
if hasattr(response, 'redirect_chain'):
|
||||
# The request was a followed redirect
|
||||
self.assertTrue(len(response.redirect_chain) > 0,
|
||||
self.failUnless(len(response.redirect_chain) > 0,
|
||||
("Response didn't redirect as expected: Response code was %d"
|
||||
" (expected %d)" % (response.status_code, status_code)))
|
||||
|
||||
@ -453,4 +453,4 @@ class TestCase(TransactionTestCase):
|
||||
restore_transaction_methods()
|
||||
transaction.rollback()
|
||||
transaction.leave_transaction_management()
|
||||
connection.close()
|
||||
connection.close()
|
||||
|
Loading…
Reference in New Issue
Block a user