From 293ddbc3263b9e87d64485b4fa83e0b70579acf1 Mon Sep 17 00:00:00 2001 From: palanisd <162479981+netbrah@users.noreply.github.com> Date: Mon, 24 Nov 2025 09:21:37 -0500 Subject: [PATCH] Update test_neo4j_fulltext_index.py --- tests/test_neo4j_fulltext_index.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/test_neo4j_fulltext_index.py b/tests/test_neo4j_fulltext_index.py index 3b10dd47..ab6e33c1 100644 --- a/tests/test_neo4j_fulltext_index.py +++ b/tests/test_neo4j_fulltext_index.py @@ -279,8 +279,12 @@ async def test_multiple_workspaces_have_separate_indexes(neo4j_storage): await result.consume() index_names = [idx["name"] for idx in indexes] - workspace1_index = f"entity_id_fulltext_idx_{storage1._get_workspace_label()}" - workspace2_index = f"entity_id_fulltext_idx_{storage2._get_workspace_label()}" + workspace1_index = ( + f"entity_id_fulltext_idx_{storage1._get_workspace_label()}" + ) + workspace2_index = ( + f"entity_id_fulltext_idx_{storage2._get_workspace_label()}" + ) assert ( workspace1_index in index_names