You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using django cursor pagination for queryset pagination, and for testing my code I'm using the django-mock-queries package for mock queryset. I get this error when I get page two in queryset:
python3.10/site-packages/django_mock_queries/utils.py:145: in is_match
return {
COMPARISON_LT: lambda: first < second if first is not None else False,
COMPARISON_LTE: lambda: first <= second if first is not None else False,
COMPARISON_IN: lambda: first in second if first is not None else False,
COMPARISON_STARTSWITH: lambda: first.startswith(second),
COMPARISON_ISTARTSWITH: lambda: first.lower().startswith(second.lower()),
COMPARISON_ENDSWITH: lambda: first.endswith(second),
COMPARISON_IENDSWITH: lambda: first.lower().endswith(second.lower()),
COMPARISON_ISNULL: lambda: (first is None) == bool(second),
COMPARISON_REGEX: lambda: re.search(second, first) is not None,
COMPARISON_IREGEX: lambda: re.search(second, first, flags=re.I) is not None,
COMPARISON_RANGE: lambda: second[0] <= first <= second[1]
}[comparison]()
E TypeError: '<' not supported between instances of 'int' and 'Value'
The text was updated successfully, but these errors were encountered:
I'm using django cursor pagination for queryset pagination, and for testing my code I'm using the django-mock-queries package for mock queryset. I get this error when I get page two in queryset:
python3.10/site-packages/django_mock_queries/utils.py:145: in is_match
return {
E TypeError: '<' not supported between instances of 'int' and 'Value'
The text was updated successfully, but these errors were encountered: