From 1ad28170dd4f92b4f88bcfb40647f52499e3adb4 Mon Sep 17 00:00:00 2001 From: Vladimir Blagojevic Date: Sat, 17 Aug 2024 16:41:27 +0200 Subject: [PATCH] Experiment17 --- integrations/astra/tests/test_document_store.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/integrations/astra/tests/test_document_store.py b/integrations/astra/tests/test_document_store.py index 600b43dc1..88e11bb63 100644 --- a/integrations/astra/tests/test_document_store.py +++ b/integrations/astra/tests/test_document_store.py @@ -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