diff --git a/tests/model_enums/tests.py b/tests/model_enums/tests.py index 1276341108e..b010b35594e 100644 --- a/tests/model_enums/tests.py +++ b/tests/model_enums/tests.py @@ -8,7 +8,6 @@ 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): @@ -312,11 +311,7 @@ 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): + with self.assertRaises(TypeError): class Identifier(uuid.UUID, models.Choices): A = "972ce4eb-a95f-4a56-9339-68c208a76f18"