summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/admin_views/tests.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/admin_views/tests.py b/tests/admin_views/tests.py
index c73164f3fc..ac773f8177 100644
--- a/tests/admin_views/tests.py
+++ b/tests/admin_views/tests.py
@@ -162,8 +162,11 @@ class AdminViewBasicTestCase(TestCase):
content.
"""
self.assertEqual(response.status_code, 200)
- self.assertLess(response.content.index(force_bytes(text1)), response.content.index(force_bytes(text2)),
- failing_msg)
+ self.assertLess(
+ response.content.index(force_bytes(text1)),
+ response.content.index(force_bytes(text2)),
+ (failing_msg or '') + '\nResponse:\n' + response.content
+ )
class AdminViewBasicTest(AdminViewBasicTestCase):