Skip to content

Commit

Permalink
Experiment17
Browse files Browse the repository at this point in the history
  • Loading branch information
vblagoje committed Aug 17, 2024
1 parent 1ee90ce commit 1ad2817
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions integrations/astra/tests/test_document_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,3 +330,19 @@ def test_comparison_less_than_equal_with_iso_date(self, document_store, filterab
$lte operator must have `DATE` or `NUMBER` value","errorCode":"INVALID_FILTER_EXPRESSION"}]}
"""
pass

def test_comparison_less_than_equal_with_string(self, document_store, filterable_docs):
"""
Fails with the following error:
astrapy.core.api.APIRequestError: {"errors":[{"message":"Invalid filter expression, $lte operator
must have `DATE` or `NUMBER` value","errorCode":"INVALID_FILTER_EXPRESSION"}]}
"""
pass

def test_comparison_less_than_equal_with_dataframe(self, document_store, filterable_docs):
"""
Fails with the following error:
astrapy.core.api.APIRequestError: {"errors":[{"message":"Invalid filter expression, $lte operator
must have `DATE` or `NUMBER` value","errorCode":"INVALID_FILTER_EXPRESSION"}]}
"""
pass

0 comments on commit 1ad2817

Please sign in to comment.