@@ -17,7 +17,7 @@ def _get_unique_index_name() -> str:
1717
1818
1919@pytest .fixture
20- def document_store (request ):
20+ def document_store ():
2121 """
2222 We use this document store for basic tests and for testing filters.
2323 `return_embedding` is set to True because in filters tests we compare embeddings.
@@ -45,7 +45,7 @@ def document_store(request):
4545
4646
4747@pytest .fixture
48- def document_store_2 (request ):
48+ def document_store_2 ():
4949 hosts = ["https://localhost:9200" ]
5050 index = f"test_index_2_{ _get_unique_index_name ()} "
5151
@@ -70,7 +70,7 @@ def document_store_2(request):
7070
7171
7272@pytest .fixture
73- def document_store_readonly (request ):
73+ def document_store_readonly ():
7474 """
7575 A document store that does not automatically create the underlying index.
7676 """
@@ -99,7 +99,7 @@ def document_store_readonly(request):
9999
100100
101101@pytest .fixture
102- def document_store_embedding_dim_4_no_emb_returned (request ):
102+ def document_store_embedding_dim_4_no_emb_returned ():
103103 """
104104 A document store with embedding dimension 4 that does not return embeddings.
105105 """
@@ -121,7 +121,7 @@ def document_store_embedding_dim_4_no_emb_returned(request):
121121
122122
123123@pytest .fixture
124- def document_store_embedding_dim_4_no_emb_returned_faiss (request ):
124+ def document_store_embedding_dim_4_no_emb_returned_faiss ():
125125 """
126126 A document store with embedding dimension 4 that uses a FAISS engine with HNSW algorithm for vector search.
127127 We use this document store for testing efficient k-NN filtering according to
0 commit comments