summaryrefslogtreecommitdiff
path: root/tests/auth_tests
diff options
context:
space:
mode:
authorMike Edmunds <medmunds@gmail.com>2025-07-16 15:01:49 -0700
committernessita <124304+nessita@users.noreply.github.com>2025-07-17 14:01:16 -0300
commitfc793fc303a3d516ab51bb21aa317031caabe7b4 (patch)
treedfcb559adacc3b5dd7e276a4d3b4740a06dc7064 /tests/auth_tests
parent5289ce65b9a1963707767cc11c476679ab445135 (diff)
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.
Diffstat (limited to 'tests/auth_tests')
-rw-r--r--tests/auth_tests/test_forms.py2
1 files changed, 1 insertions, 1 deletions
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")