Skip to content

Commit 6b5d2f9

Browse files
committed
fix sample_docs path
1 parent 45e4b28 commit 6b5d2f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_test_unstructured_client/unit_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
def sample_docs_path(file_name: str) -> str:
3636
"""Resolve the absolute-path to `file_name` in the sample-docs directory."""
37-
sample_docs_dir = pathlib.Path(__file__).parent / "_sample_docs"
37+
sample_docs_dir = pathlib.Path(__file__).parent.parent / "_sample_docs"
3838
file_path = sample_docs_dir / file_name
3939
return str(file_path.resolve())
4040

0 commit comments

Comments
 (0)