@@ -133,7 +133,7 @@ def test_retrieve_fulltext_index_info_happy_path(driver: neo4j.Driver) -> None:
133133 labels_or_types = index_info .get ("labelsOrTypes" )
134134 assert labels_or_types == ["Document" ]
135135 properties = index_info .get ("properties" )
136- assert properties == ["vectorProperty " ]
136+ assert properties == ["short_text_property " ]
137137 entity_type = index_info .get ("entityType" )
138138 assert entity_type == "NODE"
139139
@@ -144,7 +144,7 @@ def test_retrieve_fulltext_index_info_no_index_name(driver: neo4j.Driver) -> Non
144144 driver = driver ,
145145 index_name = "" ,
146146 label_or_type = "Document" ,
147- text_properties = ["vectorProperty " ],
147+ text_properties = ["short_text_property " ],
148148 )
149149 assert index_info is not None
150150 index_name = index_info .get ("name" )
@@ -154,7 +154,7 @@ def test_retrieve_fulltext_index_info_no_index_name(driver: neo4j.Driver) -> Non
154154 labels_or_types = index_info .get ("labelsOrTypes" )
155155 assert labels_or_types == ["Document" ]
156156 properties = index_info .get ("properties" )
157- assert properties == ["vectorProperty " ]
157+ assert properties == ["short_text_property " ]
158158 entity_type = index_info .get ("entityType" )
159159 assert entity_type == "NODE"
160160
@@ -177,7 +177,7 @@ def test_retrieve_fulltext_index_info_no_label_or_properties(
177177 labels_or_types = index_info .get ("labelsOrTypes" )
178178 assert labels_or_types == ["Document" ]
179179 properties = index_info .get ("properties" )
180- assert properties == ["vectorProperty " ]
180+ assert properties == ["short_text_property " ]
181181 entity_type = index_info .get ("entityType" )
182182 assert entity_type == "NODE"
183183
0 commit comments