From b8c859109c86fc4d0d97ff7b13906d6eed0a0546 Mon Sep 17 00:00:00 2001 From: Eternal Reclaimer <98760976+kyegomez@users.noreply.github.com> Date: Thu, 14 Dec 2023 09:03:26 -0800 Subject: [PATCH] Update test_qdrant.py --- tests/memory/test_qdrant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()