summaryrefslogtreecommitdiff
path: root/tests/regressiontests/admin_views
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2010-04-13 10:29:19 +0000
committerJannis Leidel <jannis@leidel.info>2010-04-13 10:29:19 +0000
commit31f7ff1518b863459820905d297ae538bd26f06c (patch)
tree934d1a79690bde76b2dd07bfc5f1ad75cc1dc7cc /tests/regressiontests/admin_views
parentc3d1267c15a77bb7bacb59e9e09eb38c32c03c2a (diff)
Fixed #12903 - Made translating the admin action selection text easier. Thanks to Ramiro Morales for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12968 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 23964a949c..f15f61781a 100644
--- a/tests/regressiontests/admin_views/tests.py
+++ b/tests/regressiontests/admin_views/tests.py
@@ -1443,7 +1443,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 selected')
+ self.assertContains(response, '0 of 2 selected')
class TestCustomChangeList(TestCase):