Skip to content

Commit bcd7afe

Browse files
committed
Fix Line too long
1 parent 9faa29b commit bcd7afe

File tree

1 file changed

+2
-1
lines changed
  • libs/community/tests/integration_tests/document_loaders

1 file changed

+2
-1
lines changed

libs/community/tests/integration_tests/document_loaders/test_pdf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,8 @@ def test_amazontextract_loader(
224224
@pytest.mark.skip(reason="Requires AWS credentials to run")
225225
def test_amazontextract_loader_failures() -> None:
226226
# 2-page PDF local file system
227-
two_page_pdf = Path(__file__).parent.parent / "examples/multi-page-forms-sample-2-page.pdf"
227+
two_page_pdf = (Path(__file__).parent.parent /
228+
"examples/multi-page-forms-sample-2-page.pdf")
228229
loader = AmazonTextractPDFLoader(two_page_pdf)
229230
with pytest.raises(ValueError):
230231
loader.load()

0 commit comments

Comments
 (0)