Refs #34118 -- Fixed CustomChoicesTests.test_uuid_unsupported on Python 3.12+.

2a4d8c0a9e
This commit is contained in:
Mariusz Felisiak 2023-04-05 13:59:10 +02:00 committed by GitHub
parent fdf0a367bd
commit 38e63c9e61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -16,6 +16,7 @@ PY38 = sys.version_info >= (3, 8)
PY39 = sys.version_info >= (3, 9)
PY310 = sys.version_info >= (3, 10)
PY311 = sys.version_info >= (3, 11)
PY312 = sys.version_info >= (3, 12)
def get_version(version=None):

View File

@ -8,6 +8,7 @@ from django.template import Context, Template
from django.test import SimpleTestCase
from django.utils.functional import Promise
from django.utils.translation import gettext_lazy as _
from django.utils.version import PY312
class Suit(models.IntegerChoices):
@ -311,6 +312,9 @@ class CustomChoicesTests(SimpleTestCase):
pass
def test_uuid_unsupported(self):
if PY312:
msg = "_value_ not set in __new__, unable to create it"
else:
msg = "UUID objects are immutable"
with self.assertRaisesMessage(TypeError, msg):