summaryrefslogtreecommitdiff
path: root/tests/regressiontests/admin_views
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2010-03-01 18:58:54 +0000
committerJannis Leidel <jannis@leidel.info>2010-03-01 18:58:54 +0000
commit647651698fb84d864f911db15503f77acdd0cbf0 (patch)
treefda92a03543d72c753aa8b14e2df524e883791cb /tests/regressiontests/admin_views
parentd2dffd78e6377b59d82bacfbd70ed78c4c611be5 (diff)
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
Diffstat (limited to 'tests/regressiontests/admin_views')
-rw-r--r--tests/regressiontests/admin_views/tests.py2
1 files changed, 1 insertions, 1 deletions
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, '<span class="_acnt">0</span> of 2 subscribers selected')
+ self.assertContains(response, '<span class="_acnt">0</span> of 2 selected')
class TestCustomChangeList(TestCase):