Skip to content

Commit

Permalink
fix(document): update text check in MsOfficeDocumentParserTest
Browse files Browse the repository at this point in the history
Adjust text check to match expected value in test case.
  • Loading branch information
phodal committed Jul 7, 2024
1 parent 7ad0b33 commit 2187188
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ class MsOfficeDocumentParserTest {
val inputStream = this.javaClass.getResourceAsStream("/ChocolateFactory.docx")!!
val documents = MsOfficeDocumentParser(DocumentType.DOC).parse(inputStream)

assert(documents[0].text.contains("ChocoBuilder"))
assert(documents[0].text.contains("ChocolateFactory"))
}
}

0 comments on commit 2187188

Please sign in to comment.