We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61ba9d7 commit d004acfCopy full SHA for d004acf
app/tests/test_read_docs.py
@@ -3,7 +3,7 @@
3
4
def test_read_docx():
5
file_processor = FileProcessor()
6
- with open("data/input/fanatyk.docx", "rb") as file:
+ with open("../../data/input/fanatyk.docx", "rb") as file:
7
file_processor.file = file
8
file_processor.file_type = ".txt"
9
content = file_processor._read_docx
app/tests/test_read_pdf.py
@@ -4,7 +4,7 @@
def test_read_pdf():
- with open("data/input/fanatyk.pdf", "rb") as file:
+ with open("../../data/input/fanatyk.pdf", "rb") as file:
file_processor.file_type = ".pdf"
10
content = file_processor._read_pdf()
0 commit comments