Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaszn committed Aug 28, 2023
1 parent 610c4e5 commit 219cdf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_custompatterns.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
EntitySerializerCategoryEmpty, EntitySerializerCategoryCtxt,
)

DJANGO_AFTER_4_0 = (django.VERSION[0] > 4 and django.VERSION[1] > 0)
DJANGO_AFTER_4_0 = (django.VERSION[0] >= 4 and django.VERSION[1] > 0)


class CustomPatternTestCase(APITestCase):
Expand Down

0 comments on commit 219cdf0

Please sign in to comment.