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
Currently, ComparisonFilters (filters containing operators such as >) are not taken into account in the InMemoryGateways.
As the InMemoryGateways are mostly used for testing, these tests fail.
for x in self.data.values():
for filter in filters:
if x.get(filter.field) not in filter.values: # THIS DOES NOT TAKE OPERATOR INTO ACCOUNT
break
else:
result.append(deepcopy(x))
The text was updated successfully, but these errors were encountered:
Currently, ComparisonFilters (filters containing operators such as >) are not taken into account in the InMemoryGateways.
As the InMemoryGateways are mostly used for testing, these tests fail.
The text was updated successfully, but these errors were encountered: