From fc793fc303a3d516ab51bb21aa317031caabe7b4 Mon Sep 17 00:00:00 2001 From: Mike Edmunds Date: Wed, 16 Jul 2025 15:01:49 -0700 Subject: Fixed #36163 -- Deprecated most positional arguments in django.core.mail. In public mail APIs, changed less frequently used parameters from keyword-or-positional to keyword-only, emitting a warning during the required deprecation period. --- tests/auth_tests/test_forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auth_tests/test_forms.py') diff --git a/tests/auth_tests/test_forms.py b/tests/auth_tests/test_forms.py index df91f100f5..ebfaa8b051 100644 --- a/tests/auth_tests/test_forms.py +++ b/tests/auth_tests/test_forms.py @@ -1266,7 +1266,7 @@ class PasswordResetFormTest(TestDataMixin, TestCase): "Sorry to hear you forgot your password.", None, [to_email], - ["site_monitor@example.com"], + bcc=["site_monitor@example.com"], headers={"Reply-To": "webmaster@example.com"}, alternatives=[ ("Really sorry to hear you forgot your password.", "text/html") -- cgit v1.3