Fixed a test failure introduced in 55a11683f7.

This commit is contained in:
Julien Phalip 2013-09-07 12:41:33 -05:00
parent d34b94b00f
commit 8ef060e0e6
1 changed files with 1 additions and 1 deletions

View File

@ -2199,7 +2199,7 @@ class AdminSearchTest(TestCase):
from django.contrib.admin.views.main import TO_FIELD_VAR
response = self.client.get('/test_admin/admin/auth/user/?q=joe&%s=username' % TO_FIELD_VAR)
self.assertContains(response, "\n1 user\n")
self.assertContains(response, '<input type="hidden" name="t" value="username"/>', html=True)
self.assertContains(response, '<input type="hidden" name="_to_field" value="username"/>', html=True)
def test_exact_matches(self):
response = self.client.get('/test_admin/admin/admin_views/recommendation/?q=bar')