Skip to content

Commit

Permalink
Skip sample tika files which do not parse consistently.
Browse files Browse the repository at this point in the history
Signed-off-by: Carroll <[email protected]>
  • Loading branch information
finnegancarroll committed May 10, 2024
1 parent c755103 commit c2abd75
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public void testTika292BWC() throws Exception {
DirectoryStream<Path> stream = Files.newDirectoryStream(tikaUnzip);

for (Path doc : stream) {
if (!tika292Checksums.containsKey(doc.getFileName())) {
if (!tika292Checksums.containsKey(doc.getFileName().toString())) {
continue;
}

Expand Down

0 comments on commit c2abd75

Please sign in to comment.