diff --git a/tests/memory/test_qdrant.py b/tests/memory/test_qdrant.py index 12a6af84..eb9bfef6 100644 --- a/tests/memory/test_qdrant.py +++ b/tests/memory/test_qdrant.py @@ -6,7 +6,7 @@ from swarms.memory.qdrant import Qdrant @pytest.fixture def mock_qdrant_client(): - with patch("your_module.QdrantClient") as MockQdrantClient: + with patch("swarms.memory.Qdrant") as MockQdrantClient: yield MockQdrantClient()