Added the response to an admin_views test assertion to aid debugging.

This commit is contained in:
Tim Graham 2015-12-28 11:25:46 -05:00
parent e6ca15c13f
commit e3d782fe80
1 changed files with 5 additions and 2 deletions

View File

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