summaryrefslogtreecommitdiff
path: root/tests/admin_docs
diff options
context:
space:
mode:
authorAdam Zapletal <adamzap@gmail.com>2025-01-25 12:18:34 -0600
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-01-27 09:23:56 +0100
commit9a71eca64bd3a357ef4846d81668d690089779c7 (patch)
treef4a3ebcc3e9763f24f21d66daad6816959e53764 /tests/admin_docs
parent330d89d4fe7832355535580383523f1749a3ee45 (diff)
Captured stderr during admin_docs test.
The admindocs app doesn't pass a log level to docutils when it parses reStructured Text, so system messages can be logged during parsing.
Diffstat (limited to 'tests/admin_docs')
-rw-r--r--tests/admin_docs/test_views.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/admin_docs/test_views.py b/tests/admin_docs/test_views.py
index 11b70d6cd9..bec555bd44 100644
--- a/tests/admin_docs/test_views.py
+++ b/tests/admin_docs/test_views.py
@@ -509,7 +509,8 @@ class TestModelDetailView(TestDataMixin, AdminDocsTestCase):
codename="change_person", content_type=person_content_type
)
staff_user.user_permissions.add(view_company, change_person)
- response_for_person = self.client.get(person_url)
+ with captured_stderr():
+ response_for_person = self.client.get(person_url)
response_for_company = self.client.get(company_url)
# View or change permission grants access.
self.assertEqual(response_for_person.status_code, 200)