Skip to content

Commit

Permalink
Sort test input
Browse files Browse the repository at this point in the history
  • Loading branch information
schmika committed Jun 12, 2024
1 parent da267c4 commit 6b505e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ public void testMultiFileParse() throws XMLStreamException, IOException {
.filter(p -> p.getFileName().toString().startsWith("1860-"))
.map(Path::toAbsolutePath)
.map(Path::toString)
.sorted()
.collect(Collectors.joining("+"));
List<OcrBox> boxes =
new AltoParser(filterFac.create(new StringReader(ptr)))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ class MultiFileSourceReaderTest {
SourcePointer.parse(
filePaths.stream()
.map(p -> p.toAbsolutePath().toString())
.sorted()
.collect(Collectors.joining("+")));
}

Expand Down

0 comments on commit 6b505e8

Please sign in to comment.