Skip to content

Commit d004acf

Browse files
committed
Fix tests 2
1 parent 61ba9d7 commit d004acf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/tests/test_read_docs.py

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

44
def test_read_docx():
55
file_processor = FileProcessor()
6-
with open("data/input/fanatyk.docx", "rb") as file:
6+
with open("../../data/input/fanatyk.docx", "rb") as file:
77
file_processor.file = file
88
file_processor.file_type = ".txt"
99
content = file_processor._read_docx

app/tests/test_read_pdf.py

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

55
def test_read_pdf():
66
file_processor = FileProcessor()
7-
with open("data/input/fanatyk.pdf", "rb") as file:
7+
with open("../../data/input/fanatyk.pdf", "rb") as file:
88
file_processor.file = file
99
file_processor.file_type = ".pdf"
1010
content = file_processor._read_pdf()

0 commit comments

Comments
 (0)