From 647651698fb84d864f911db15503f77acdd0cbf0 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Mon, 1 Mar 2010 18:58:54 +0000 Subject: [PATCH] Fixed test of the admin actions selection counter for changes made in r12626. Thanks for the report, Eric Holscher. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12633 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/admin_views/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regressiontests/admin_views/tests.py b/tests/regressiontests/admin_views/tests.py index ca9b0e86fa..b66d2956f9 100644 --- a/tests/regressiontests/admin_views/tests.py +++ b/tests/regressiontests/admin_views/tests.py @@ -1420,7 +1420,7 @@ class AdminActionsTest(TestCase): Check if the selection counter is there. """ response = self.client.get('/test_admin/admin/admin_views/subscriber/') - self.assertContains(response, '0 of 2 subscribers selected') + self.assertContains(response, '0 of 2 selected') class TestCustomChangeList(TestCase):