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:
Malcolm Tredinnick 2009-03-20 01:37:34 +00:00
parent 255cb391d1
commit 420a35b9b7
1 changed files with 2 additions and 2 deletions

View File

@ -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()