From 84015b502a4064f349090b5ba588de869f93d2b0 Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Tue, 21 Apr 2026 11:29:25 +0100 Subject: [PATCH] Fixing tests --- tests/unit/test_storage/test_triples_neo4j_storage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/test_storage/test_triples_neo4j_storage.py b/tests/unit/test_storage/test_triples_neo4j_storage.py index 19922b0f..0dcdb55e 100644 --- a/tests/unit/test_storage/test_triples_neo4j_storage.py +++ b/tests/unit/test_storage/test_triples_neo4j_storage.py @@ -68,8 +68,8 @@ class TestNeo4jStorageProcessor: "CREATE INDEX Node_uri FOR (n:Node) ON (n.uri)", "CREATE INDEX Literal_value FOR (n:Literal) ON (n.value)", "CREATE INDEX Rel_uri FOR ()-[r:Rel]-() ON (r.uri)", - "CREATE INDEX node_user_collection_uri FOR (n:Node) ON (n.workspace, n.collection, n.uri)", - "CREATE INDEX literal_user_collection_value FOR (n:Literal) ON (n.workspace, n.collection, n.value)", + "CREATE INDEX node_workspace_collection_uri FOR (n:Node) ON (n.workspace, n.collection, n.uri)", + "CREATE INDEX literal_workspace_collection_value FOR (n:Literal) ON (n.workspace, n.collection, n.value)", "CREATE INDEX rel_workspace FOR ()-[r:Rel]-() ON (r.workspace)", "CREATE INDEX rel_collection FOR ()-[r:Rel]-() ON (r.collection)" ]