From e3d782fe804a94b2fe7c8a18b95d9fb41fb9119c Mon Sep 17 00:00:00 2001
From: Tim Graham <timograham@gmail.com>
Date: Mon, 28 Dec 2015 11:25:46 -0500
Subject: [PATCH] Added the response to an admin_views test assertion to aid
 debugging.

---
 tests/admin_views/tests.py | 7 +++++--
 1 file 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):