Skip to content

Commit

Permalink
patch client
Browse files Browse the repository at this point in the history
  • Loading branch information
vachillo committed Jul 2, 2024
1 parent 9e49960 commit dafb0a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/unit/drivers/vector/test_qdrant_vector_store_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ def mock_engine(self):
return MagicMock()

@pytest.fixture(autouse=True)
def driver(self, embedding_driver):
def driver(self, embedding_driver, mocker):
mocker.patch("qdrant_client.QdrantClient")
driver = QdrantVectorStoreDriver(
url="http://some_url",
port=8080,
Expand Down

0 comments on commit dafb0a4

Please sign in to comment.