diff --git a/tests/unit/test_storage/test_doc_embeddings_qdrant_processor.py b/tests/unit/test_storage/test_doc_embeddings_qdrant_storage.py similarity index 99% rename from tests/unit/test_storage/test_doc_embeddings_qdrant_processor.py rename to tests/unit/test_storage/test_doc_embeddings_qdrant_storage.py index 016a356e..4fadc641 100644 --- a/tests/unit/test_storage/test_doc_embeddings_qdrant_processor.py +++ b/tests/unit/test_storage/test_doc_embeddings_qdrant_storage.py @@ -11,7 +11,7 @@ from unittest import IsolatedAsyncioTestCase from trustgraph.storage.doc_embeddings.qdrant.write import Processor -class TestQdrantDocEmbeddingsProcessor(IsolatedAsyncioTestCase): +class TestQdrantDocEmbeddingsStorage(IsolatedAsyncioTestCase): """Test Qdrant document embeddings storage functionality""" @patch('trustgraph.storage.doc_embeddings.qdrant.write.QdrantClient') diff --git a/tests/unit/test_storage/test_qdrant_graph_embeddings.py b/tests/unit/test_storage/test_graph_embeddings_qdrant_storage.py similarity index 99% rename from tests/unit/test_storage/test_qdrant_graph_embeddings.py rename to tests/unit/test_storage/test_graph_embeddings_qdrant_storage.py index b6ec8759..081d79cd 100644 --- a/tests/unit/test_storage/test_qdrant_graph_embeddings.py +++ b/tests/unit/test_storage/test_graph_embeddings_qdrant_storage.py @@ -11,7 +11,7 @@ from unittest import IsolatedAsyncioTestCase from trustgraph.storage.graph_embeddings.qdrant.write import Processor -class TestQdrantGraphEmbeddingsSimple(IsolatedAsyncioTestCase): +class TestQdrantGraphEmbeddingsStorage(IsolatedAsyncioTestCase): """Test Qdrant graph embeddings storage functionality""" @patch('trustgraph.storage.graph_embeddings.qdrant.write.QdrantClient')