From 9e25d7c3d1e39f827141221d7a0391320527a1d2 Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Sat, 12 Jul 2025 00:10:23 +0100 Subject: [PATCH] Consistency --- ...drant_processor.py => test_doc_embeddings_qdrant_storage.py} | 2 +- ...ph_embeddings.py => test_graph_embeddings_qdrant_storage.py} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename tests/unit/test_storage/{test_doc_embeddings_qdrant_processor.py => test_doc_embeddings_qdrant_storage.py} (99%) rename tests/unit/test_storage/{test_qdrant_graph_embeddings.py => test_graph_embeddings_qdrant_storage.py} (99%) 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')