We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcd7afe commit 2503eb6Copy full SHA for 2503eb6
libs/community/tests/integration_tests/document_loaders/test_pdf.py
@@ -224,8 +224,9 @@ def test_amazontextract_loader(
224
@pytest.mark.skip(reason="Requires AWS credentials to run")
225
def test_amazontextract_loader_failures() -> None:
226
# 2-page PDF local file system
227
- two_page_pdf = (Path(__file__).parent.parent /
228
- "examples/multi-page-forms-sample-2-page.pdf")
+ two_page_pdf = (
+ Path(__file__).parent.parent / "examples/multi-page-forms-sample-2-page.pdf"
229
+ )
230
loader = AmazonTextractPDFLoader(two_page_pdf)
231
with pytest.raises(ValueError):
232
loader.load()
0 commit comments