Skip to content

Commit

Permalink
Remove outdated test
Browse files Browse the repository at this point in the history
  • Loading branch information
vblagoje committed Sep 9, 2024
1 parent 5644765 commit 214a413
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions integrations/weaviate/tests/test_document_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -660,15 +660,6 @@ def test_embedding_retrieval_with_distance_and_certainty(self, document_store):
with pytest.raises(ValueError):
document_store._embedding_retrieval(query_embedding=[], distance=0.1, certainty=0.1)

def test_filter_documents_with_legacy_filters(self, document_store):
docs = []
for index in range(10):
docs.append(Document(content="This is some content", meta={"index": index}))
document_store.write_documents(docs)
result = document_store.filter_documents({"content": {"$eq": "This is some content"}})

assert len(result) == 10

def test_filter_documents_below_default_limit(self, document_store):
docs = []
for index in range(9998):
Expand Down

0 comments on commit 214a413

Please sign in to comment.