@@ -289,12 +289,12 @@ def testProfileMissingFieldQuery(env):
289289
290290 actual_res = conn .execute_command ('ft.profile' , 'idx' , 'search' , 'query' , 'ismissing(@t)' , 'nocontent' , 'DIALECT' , 2 )
291291 env .assertEqual (actual_res [0 ], [1 , '2' ])
292- env .assertEqual (actual_res [1 ][1 ][0 ][3 ], ['Type' , 'MISSING' , 'Field' , 't' , 'Number of reading operations' , 2 , 'Estimated number of matches' , 1 ])
292+ env .assertEqual (actual_res [1 ][1 ][0 ][3 ], ['Type' , 'MISSING' , 'Field' , 't' , 'Number of reading operations' , 1 , 'Estimated number of matches' , 1 ])
293293
294- actual_res = conn .execute_command ('ft.profile' , 'idx' , 'search' , 'query' , '-ismissing(@t)' , 'nocontent' )
294+ actual_res = conn .execute_command ('ft.profile' , 'idx' , 'search' , 'query' , '-ismissing(@t)' , 'nocontent' , 'DIALECT' , 2 )
295295 env .assertEqual (actual_res [0 ], [1 , '1' ])
296- env .assertEqual (actual_res [1 ][1 ][0 ][3 ], ['Type' , 'NOT' , 'Number of reading operations' , 2 , 'Child iterator' ,
297- ['Type' , 'MISSING' , 'Field' , 't' , 'Number of reading operations' , 2 , 'Estimated number of matches' , 1 ]])
296+ env .assertEqual (actual_res [1 ][1 ][0 ][3 ], ['Type' , 'NOT' , 'Number of reading operations' , 1 , 'Child iterator' ,
297+ ['Type' , 'MISSING' , 'Field' , 't' , 'Number of reading operations' , 1 , 'Estimated number of matches' , 1 ]])
298298
299299@skip (cluster = True )
300300def testProfileVector (env ):
0 commit comments