summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/test/testcases.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/testcases.py b/django/test/testcases.py
index 4d06a59fa7..57472f7631 100644
--- a/django/test/testcases.py
+++ b/django/test/testcases.py
@@ -408,7 +408,7 @@ class TransactionTestCase(ut2.TestCase):
msg_prefix + "Found %d instances of '%s' in response"
" (expected %d)" % (real_count, text, count))
else:
- self.failUnless(real_count != 0,
+ self.assertTrue(real_count != 0,
msg_prefix + "Couldn't find '%s' in response" % text)
def assertNotContains(self, response, text, status_code=200,