summaryrefslogtreecommitdiff
path: root/tests/admin_views/tests.py
diff options
context:
space:
mode:
authorantoliny0919 <antoliny0919@gmail.com>2025-05-22 15:56:51 +0900
committerJacob Walls <jacobtylerwalls@gmail.com>2025-10-14 08:10:43 -0400
commitbc03f1064e10fa247a46d4e8a98ba9b26aa4790d (patch)
treefe2ba060988bc4d7e124e0dce536009fbea0e21f /tests/admin_views/tests.py
parent407ab793573ce82c93cfdc86e5a0a7fa804f60f5 (diff)
Fixed #34041 -- Added aria-current attribute to admin breadcrumbs.
Co-authored by: farita1699 <uwanjerry25@gmail.com>
Diffstat (limited to 'tests/admin_views/tests.py')
-rw-r--r--tests/admin_views/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_views/tests.py b/tests/admin_views/tests.py
index ad37416cbf..868b616d76 100644
--- a/tests/admin_views/tests.py
+++ b/tests/admin_views/tests.py
@@ -2579,7 +2579,7 @@ class AdminViewPermissionsTest(TestCase):
# Add user may login and POST to add view, then redirect to admin root
self.client.force_login(self.adduser)
addpage = self.client.get(reverse("admin:admin_views_article_add"))
- change_list_link = '&rsaquo; <a href="%s">Articles</a>' % reverse(
+ change_list_link = '<a href="%s">Articles</a>' % reverse(
"admin:admin_views_article_changelist"
)
self.assertNotContains(