File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -1272,13 +1272,14 @@ def run_cli_tests(options):
12721272 print ('\n ** Running MD on a folder (with image queue and preprocessing) (CLI) **\n ' )
12731273
12741274 cmd = base_cmd + ' --use_image_queue --preprocess_on_image_queue'
1275- inference_output_file_queue = insert_before_extension (inference_output_file ,'preprocess_queue' )
1276- cmd = cmd .replace (inference_output_file ,inference_output_file_queue )
1275+ inference_output_file_preprocess_queue = \
1276+ insert_before_extension (inference_output_file ,'preprocess_queue' )
1277+ cmd = cmd .replace (inference_output_file ,inference_output_file_preprocess_queue )
12771278 cmd += ' --detector_options {}' .format (dict_to_kvp_list (options .detector_options ))
12781279 cmd_results = execute_and_print (cmd )
12791280
12801281 assert output_files_are_identical (fn1 = inference_output_file ,
1281- fn2 = inference_output_file_queue ,
1282+ fn2 = inference_output_file_preprocess_queue ,
12821283 verbose = True )
12831284
12841285 ## Run again on multiple cores, make sure the results are the same
You can’t perform that action at this time.
0 commit comments