From 420a35b9b752f5030c1c01616f41601812250aad Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Fri, 20 Mar 2009 01:37:34 +0000 Subject: [PATCH] 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 --- django/test/testcases.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/test/testcases.py b/django/test/testcases.py index cf1bf6ea63..5faef11ba2 100644 --- a/django/test/testcases.py +++ b/django/test/testcases.py @@ -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() \ No newline at end of file + connection.close()