Skip to content

Commit

Permalink
fix: test_dict_converters test case
Browse files Browse the repository at this point in the history
  • Loading branch information
lohit8846 committed Jun 1, 2024
1 parent 8036e78 commit c3dda99
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions integrations/qdrant/tests/test_dict_converters.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def test_to_dict():
"content_field": "content",
"name_field": "name",
"embedding_field": "embedding",
'force_disable_check_same_thread': False,
"use_sparse_embeddings": False,
"similarity": "cosine",
"return_embedding": False,
Expand Down Expand Up @@ -64,6 +65,7 @@ def test_from_dict():
"content_field": "content",
"name_field": "name",
"embedding_field": "embedding",
'force_disable_check_same_thread': False,
"use_sparse_embeddings": True,
"similarity": "cosine",
"return_embedding": False,
Expand All @@ -88,6 +90,7 @@ def test_from_dict():
document_store.content_field == "content",
document_store.name_field == "name",
document_store.embedding_field == "embedding",
document_store.force_disable_check_same_thread is False,
document_store.use_sparse_embeddings is True,
document_store.on_disk is False,
document_store.similarity == "cosine",
Expand Down

0 comments on commit c3dda99

Please sign in to comment.