@@ -284,7 +284,7 @@ def test_process_pdf_success(self, mock_post, mock_file):
284284 result = client .process_pdf (
285285 'processFulltextDocument' ,
286286 '/test/document.pdf' ,
287- generateIDs = True ,
287+ generate_ids = True ,
288288 consolidate_header = True ,
289289 consolidate_citations = False ,
290290 include_raw_citations = False ,
@@ -308,7 +308,7 @@ def test_process_pdf_file_not_found(self, mock_file):
308308 result = client .process_pdf (
309309 'processFulltextDocument' ,
310310 '/nonexistent/document.pdf' ,
311- generateIDs = False ,
311+ generate_ids = False ,
312312 consolidate_header = False ,
313313 consolidate_citations = False ,
314314 include_raw_citations = False ,
@@ -335,7 +335,7 @@ def test_process_txt_success(self, mock_post, mock_file):
335335 result = client .process_txt (
336336 'processCitationList' ,
337337 '/test/references.txt' ,
338- generateIDs = False ,
338+ generate_ids = False ,
339339 consolidate_header = False ,
340340 consolidate_citations = True ,
341341 include_raw_citations = True ,
@@ -371,7 +371,7 @@ def test_process_pdf_server_busy_retry(self, mock_post):
371371 result = client .process_pdf (
372372 'processFulltextDocument' ,
373373 '/test/document.pdf' ,
374- generateIDs = False ,
374+ generate_ids = False ,
375375 consolidate_header = False ,
376376 consolidate_citations = False ,
377377 include_raw_citations = False ,
@@ -412,7 +412,7 @@ def test_process_batch(self, mock_isfile, mock_executor):
412412 '/test' ,
413413 '/output' ,
414414 n = 2 ,
415- generateIDs = False ,
415+ generate_ids = False ,
416416 consolidate_header = False ,
417417 consolidate_citations = False ,
418418 include_raw_citations = False ,
@@ -493,7 +493,7 @@ def test_process_batch_empty_input_files(self, mock_configure_logging, mock_test
493493 input_path = '/test' ,
494494 output = '/output' ,
495495 n = 1 ,
496- generateIDs = False ,
496+ generate_ids = False ,
497497 consolidate_header = False ,
498498 consolidate_citations = False ,
499499 include_raw_citations = False ,
@@ -535,7 +535,7 @@ def test_process_txt_unicode_error(self, mock_configure_logging, mock_test_serve
535535 result = client .process_txt (
536536 'processCitationList' ,
537537 '/test/references.txt' ,
538- generateIDs = False ,
538+ generate_ids = False ,
539539 consolidate_header = False ,
540540 consolidate_citations = False ,
541541 include_raw_citations = False ,
@@ -585,7 +585,7 @@ def test_process_pdf_timeout_error(self, mock_configure_logging, mock_test_serve
585585 result = client .process_pdf (
586586 'processFulltextDocument' ,
587587 '/test/document.pdf' ,
588- generateIDs = False ,
588+ generate_ids = False ,
589589 consolidate_header = False ,
590590 consolidate_citations = False ,
591591 include_raw_citations = False ,
@@ -600,7 +600,7 @@ def test_process_pdf_timeout_error(self, mock_configure_logging, mock_test_serve
600600 result = client .process_pdf (
601601 'processFulltextDocument' ,
602602 '/test/document.pdf' ,
603- generateIDs = False ,
603+ generate_ids = False ,
604604 consolidate_header = False ,
605605 consolidate_citations = False ,
606606 include_raw_citations = False ,
0 commit comments