Commit 64765169 authored by Jannis Leidel's avatar Jannis Leidel
Browse files

Fixed test of the admin actions selection counter for changes made in r12626....

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
parent d2dffd78
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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, '<span class="_acnt">0</span> of 2 subscribers selected')
        self.assertContains(response, '<span class="_acnt">0</span> of 2 selected')


class TestCustomChangeList(TestCase):