diff options
| author | Jannis Leidel <jannis@leidel.info> | 2010-04-13 10:29:19 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2010-04-13 10:29:19 +0000 |
| commit | 31f7ff1518b863459820905d297ae538bd26f06c (patch) | |
| tree | 934d1a79690bde76b2dd07bfc5f1ad75cc1dc7cc /tests/regressiontests/admin_views | |
| parent | c3d1267c15a77bb7bacb59e9e09eb38c32c03c2a (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.py | 2 |
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): |
