From ab08fa748e4b3e2a4304ca3093cbdce575aa071a Mon Sep 17 00:00:00 2001 From: MJedr Date: Mon, 18 Sep 2023 11:26:56 +0200 Subject: [PATCH] another fix --- tests/test_engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_engine.py b/tests/test_engine.py index 679e5ec..e3a49dd 100644 --- a/tests/test_engine.py +++ b/tests/test_engine.py @@ -438,7 +438,7 @@ def test_reference_split_handles_semicolon(): def test_clean_pdf_before_run(tmp_path, pdf_files): tmp_file_path = tmp_path / "packed.pdf" - pdf = pdf_files[7] + pdf = pdf_files[9] with open(pdf, 'rb') as input, open(tmp_file_path, 'wb') as tmp_out: tmp_out.write(input.read())