File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
ravendb/tests/dotnet_migrated_tests Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ def test_auto_index_creation_with_exact_search(self):
210210 index_definitions = self .store .maintenance .send (GetIndexesOperation (0 , 10 ))
211211
212212 self .assertEqual (1 , len (index_definitions ))
213- self .assertEqual ("Auto/Dtoes/ByVector.search(embedding_sinlges )" , index_definitions [0 ].name )
213+ self .assertEqual ("Auto/Dtoes/ByVector.search(embedding_singles )" , index_definitions [0 ].name )
214214
215215 def test_auto_index_creation_with_exact_search_quantized_binary (self ):
216216 with self .store .open_session () as session :
@@ -286,3 +286,8 @@ def test_auto_index_creation_with_exact_search_text(self):
286286 self .assertEqual ("Sailors" , results [1 ].name )
287287 self .assertEqual ("Paddle" , results [2 ].name )
288288 self .assertEqual ("Scott Steiner" , results [3 ].name )
289+
290+ index_definitions = self .store .maintenance .send (GetIndexesOperation (0 , 10 ))
291+
292+ self .assertEqual (1 , len (index_definitions ))
293+ self .assertEqual ("Auto/Products/ByVector.search(embedding.text(name))" , index_definitions [0 ].name )
You can’t perform that action at this time.
0 commit comments