Skip to content

Commit 449ad62

Browse files
committed
fix dj 3.2 tests
1 parent 29ec51d commit 449ad62

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

tests/examples/admin.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import sys
12
from django.contrib import admin
23

34
from tests.examples.models import (

tests/examples/models/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import sys
12
from .mapbox import Map
23
from .strict import StrictExample
34
from .no_coerce import NoCoerceExample
@@ -12,5 +13,5 @@
1213
from .gnss_vanilla import GNSSReceiverBasic
1314
from .equivalency import EquivalencyExample
1415
from .extern import ExternalChoices
15-
from .text_choices import TextChoicesExample
1616
from .flag_howto import Group
17+
from .text_choices import TextChoicesExample

tests/examples/models/extern.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
from enum import StrEnum
1+
from enum import Enum
22
from django.db import models
33
from django_enum import EnumField
44

55

66
class ExternalChoices(models.Model):
77

8-
class TextEnum(StrEnum):
8+
class TextEnum(str, Enum):
99

1010
VALUE0 = 'V0'
1111
VALUE1 = 'V1'

tests/examples/models/text_choices.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Color(TextChoices):
2626
# to make it case-insensitive we can override the property
2727
# and mark it like this:
2828
@symmetric(case_fold=True)
29-
@models.enums.enum_property
29+
@property
3030
def label(self) -> str:
3131
return self._label_
3232

0 commit comments

Comments
 (0)