diff options
| author | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2025-10-17 18:54:18 +0200 |
|---|---|---|
| committer | Baptiste Mispelon <bmispelon@gmail.com> | 2025-11-21 22:46:02 +0100 |
| commit | e81dd718cba062f6ace41428278621429cb2d7fc (patch) | |
| tree | c5c07718ec6df1ec9e832426740bdf2f1a2da784 /contact | |
| parent | 483ac8dbc089cad2f8e23b5c5b0f4a128f950ab6 (diff) | |
Moved docs search bar to top navigation in prep for global search.
Diffstat (limited to 'contact')
| -rw-r--r-- | contact/tests.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contact/tests.py b/contact/tests.py index a11ea522..cf5f0b50 100644 --- a/contact/tests.py +++ b/contact/tests.py @@ -6,6 +6,8 @@ from django.http import HttpRequest from django.test import TestCase from django.test.utils import override_settings +from djangoproject.tests import ReleaseMixin + from .views import FoundationContactForm @@ -21,7 +23,7 @@ has_network_connection = check_network_connection() @override_settings(AKISMET_TESTING=True) -class ContactFormTests(TestCase): +class ContactFormTests(ReleaseMixin, TestCase): def setUp(self): self.url = "/contact/foundation/" |
