summaryrefslogtreecommitdiff
path: root/tests/mail
diff options
context:
space:
mode:
authorDavid Smith <39445562+smithdc1@users.noreply.github.com>2022-02-19 19:36:01 +0000
committerGitHub <noreply@github.com>2022-02-19 20:36:01 +0100
commitfac3dd7f390d372736e05974cc5c3ef1a3768fbb (patch)
tree8a167b31cfa2863ed7153ab123b506501779f33a /tests/mail
parent9ac3ef59f9538cfb520e3607af743532434d1755 (diff)
downloaddjango-fac3dd7f390d372736e05974cc5c3ef1a3768fbb.tar.gz
Refs #33173 -- Fixed MailTests.test_backend_arg() on Windows and Python 3.11+.
Diffstat (limited to 'tests/mail')
-rw-r--r--tests/mail/tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/mail/tests.py b/tests/mail/tests.py
index 51e26cc6be..183a0c0ab1 100644
--- a/tests/mail/tests.py
+++ b/tests/mail/tests.py
@@ -29,6 +29,7 @@ from django.core.mail.message import BadHeaderError, sanitize_address
from django.test import SimpleTestCase, override_settings
from django.test.utils import requires_tz_support
from django.utils.translation import gettext_lazy
+from django.utils.version import PY311
try:
from aiosmtpd.controller import Controller
@@ -790,7 +791,7 @@ class MailTests(HeadersCheckMixin, SimpleTestCase):
filebased.EmailBackend,
)
- if sys.platform == "win32":
+ if sys.platform == "win32" and not PY311:
msg = (
"_getfullpathname: path should be string, bytes or os.PathLike, not "
"object"