diff options
| author | Matthias Kestenholz <mk@feinheit.ch> | 2024-08-07 23:10:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-07 18:10:49 -0300 |
| commit | 54888408a1e5552d9a42584550bda2355ed45943 (patch) | |
| tree | 89eaf496050da022a73ba0af4a96f6148c993e49 /tests/admin_views/tests.py | |
| parent | 790f0f8868b0cde9a9bec1f0621efa53b00c87df (diff) | |
Fixed #35639 -- Improved admin's delete confirmation page title.
Diffstat (limited to 'tests/admin_views/tests.py')
| -rw-r--r-- | tests/admin_views/tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/admin_views/tests.py b/tests/admin_views/tests.py index e0a4926b91..9dbe1e1432 100644 --- a/tests/admin_views/tests.py +++ b/tests/admin_views/tests.py @@ -3003,6 +3003,7 @@ class AdminViewPermissionsTest(TestCase): response = self.client.get( reverse("admin:admin_views_section_delete", args=(self.s1.pk,)) ) + self.assertContains(response, "<h1>Delete</h1>") self.assertContains(response, "<h2>Summary</h2>") self.assertContains(response, "<li>Articles: 3</li>") # test response contains link to related Article |
