Update test_neo4j_fulltext_index.py

This commit is contained in:
palanisd 2025-11-24 09:21:37 -05:00 committed by GitHub
parent e9f2b13b26
commit 293ddbc326
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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